Hi,
Ive seen this customized progress bar and wonder if there is an opportunity to change from issue count to Story Point progress. I've tried but failed.
Maybe you can help:
/Granularity - length of the bar chart in pixelswith granularity=200: //Lengths of bar sections per criterionwith todo=FLOOR(COUNT#truthy{status="to do"}/COUNT{1}*granularity): with inprogress=FLOOR(COUNT#truthy{status="in progress"}/COUNT{1}*granularity): with done=FLOOR(COUNT#truthy{status="done"}/COUNT{1}*granularity): with other=granularity-done-inprogress-todo://Bar chart using simple square graphicsCONCAT("!https://www.example.com/images/Red.png|height=20,width=",todo,"!","!https://www.example.com/images/Orange.png|height=20,width=",inprogress,"!","!https://www.example.com/images/Green.png|height=20,width=",done,"!","!https://www.example.com/images/Gray.png|height=20,width=",other,"!")Solved! Go to Solution.