Burndown chart by storypoints on issue status other than closed?

grant luna February 16, 2012

Currently, the Greenhopper "statistics burndown chart" by "story points" considers an issue "burned" if the issue has a status of "closed" (this is my understaning of how it works). Can this be changed to burn down story points on a different issue status? Or multiple issue status? I want to chart issue burn down when the issue status is "ready for UAT" or "closed".

4 answers

1 accepted

0 votes
Answer accepted
Nicholas Muldoon
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 16, 2012
Chris Green January 17, 2019

404 - Page Not Found

Chris Green January 17, 2019

@Nicholas Muldoon do you have an updated link please?

0 votes
Salem Korayem June 13, 2013

We've solved this: during the sprint, the team updates Story Points field on parent issue by asking "how much points are their remaining?" resulting in points reduction or increase. This makes the chart burn down though the issue is still in progress :)

0 votes
Korayem May 3, 2013

We've solved this: during a sprint, the team updates Story Points field by reducing (or increasing) its value to what they see as remaining. This makes the chart burn down :)

0 votes
Midori
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 10, 2013

If you need more fields or other fields than status to represent "DONE" or you have a totally different definition of "DONE", you may want to implement a custom agile report with JIRA PDF View Plugin.

You can use the default Burn Down Chart template and customize the logic in the init() method of "burn-down-chart.groovy".

...
if(it.resolutionDate != null) {
                    tasksDone++
...

It, by default, considers any issue done if its resolution date is not null. (We got this request in an agile Requirement Management context.)

Suggest an answer

Log in or Sign up to answer