A common question we get in support is how to limit x-labels to the iterations given a specific release.
Below is some sample code that can help you achieve this!
data-series-chart
conditions: Type=Story
x-labels-property: 'Schedule - Iteration'
x-labels-tree: Schedule
x-labels-start: 'Release 1 - August > Iteration 0'
x-labels-end: 'Release 1 - August > Iteration 9'
y-title: Scope
x-title: Iteration
show-start-label: true
cumulative: true
chart-height: 700
chart-width: 1000
plot-height: 375
plot-width: 500
series:
- label: Scope
color: black
data: SELECT 'Schedule - Iteration', SUM(Points)
- label: Analysis complete
color: orange
data: SELECT 'Schedule - Iteration', SUM(Points) WHERE status >= 'Ready for Testing'
trend: false
- label: Development complete
color: blue
data: SELECT 'Schedule - Iteration', SUM(Points) WHERE status = 'Ready for Signoff'
trend: false
- label: Accepted
color: green
data: SELECT 'Schedule - Iteration', SUM(Points) WHERE status = 'Accepted'
trend: false
Please let us know if you have any questions support@thoughtworks.com
Comments
0 comments
Please sign in to leave a comment.