Simple Mingle Overview Charts: Project Backlog
May 20 1 Comment
One of the items I track in an Agile project is what my team refers to as “Project Backlog.” The Project Backlog contains stories that have yet to be accepted and assigned to a sprint or release. For purposes of estimating project end dates, I keep a running tab on the total stories in the Project Backlog at any given time.
In Mingle, I’ve developed the following tracking chart:
Here’s the code to create this chart:
{{
data-series-chart
cumulative: true
x-labels-start: 04/01/09
x-labels-end: 05/30/09
x-labels-step: 7
x-title: Date
y-title: Stories
chart-width: 400
plot-width: 200
three-d: false
chart-type: line
series:
- color: orange
data: SELECT ‘Added On’, COUNT(*) Where type = Story AND ‘Planning – Release’ IS NULL and ‘Planning – Sprint’ IS NULL and ‘Added On’ <= TODAY and Status != ‘On Hold’ and Status != ‘Deleted’
type: line
line-width: 2
trend: false
}}
Related Articles
- Highly Specific Scrum meeting Question (ask.metafilter.com)
- OutSystems offers agile development for the cloud (infoworld.com)



Pingback: More Mingle Chart Modifications « Rick Proctor