Hi,
To use the same burn down ,for both stories and tasks in a sprint, I've changed the "Task estimate" to "Planning - Esitmate" so that everything can be calculated in the same graph.Does anybody got another better solution?
/Lisa
Hi,
To use the same burn down ,for both stories and tasks in a sprint, I've changed the "Task estimate" to "Planning - Esitmate" so that everything can be calculated in the same graph.Does anybody got another better solution?
/Lisa
Comments
2 comments
Lisa
I think you could combine them as two lines on one chart using exisitng properties as follows:
{{
data-series-chart
conditions: 'Type' = 'Task' or Type =Story
x-title: Iteration
y-title: Story/Task points
x-labels-conditions: Type = Iteration and Release = (Current Release)
cumulative: true
plot-x-offset: 90
chart-height: 500
chart-width: 1000
plot-height: 350
plot-width: 700
legend-max-width: 300
chart-type: line
series:
- label: Story points completed
color: red
data: SELECT 'Iteration', SUM('Planning Estimate') WHERE 'Story Status' = 'Accepted'
- label: Scope
color: darkgreen
data: SELECT 'Iteration', SUM('Planning Estimate') WHERE Type = Story and 'Story Status' != Open and 'Story Status' != Deleted
- label: Task Points Completed
color: blue
data: SELECT 'Iteration', SUM('Task Estimate') WHERE 'Task Status' = 'Completed'
}}
Thanks for the tip Ian
Now I can get 2 separate lines :)
/Lisa
Please sign in to leave a comment.