vote up 2 vote down star

do you use a tool? or just manually make them?

flag

27% accept rate

9 Answers

vote up 3 vote down

We tend to just use a simple shared excel sheet with a graph on one tab and a pivot table on another.

link|flag
vote up 2 vote down

Google charts api/server can make one fairly easily

Burndown 2 Burn down

You specify everything in the URL so it's easy to update:

http://chart.apis.google.com/chart?
chs=600x250& // the size of the chart
chtt=Burndown& // Title
cht=lc& // The chart type - "lc" means a line chart that only needs Y values
chdl=estimated|actual& // The two legends
chco=FF0000,00FF00& // The colours in hex of the two lines
chxr=0,0,30,2|1,0,40,2& // The data range for the x,y (index,min,max,interval)
chds=0,40 // The min and max values for the data. i.e. amount of features
chd=t:40,36,32,28,24,20,16,12,8,4,0|40,39,38,37,36,35,30,25,23,21,18,14,12,9,1 // Data

The URL above plots in intervals of 2 - so work every 2 days. You'll need a bigger size chart for every day. To do this make the data have 30 values for estimated and actual, and change the "chxr" so the interval is 1, not two.

You can plot only the days done more clearly with the "lxy" chart type (the first image). This needs you to enter the X data values too (so a vector). Use -1 for unknown.

link|flag
vote up 1 vote down

I did use TargetProcess but I now prefer a more tactile method so I draw it manually on a whiteboard.

link|flag
vote up 1 vote down

VersionOne makes the burndown sheets nicely.

link|flag
vote up 0 vote down

We use something locally based on http://opentcdb.org/ but that does scrum tracking, and draws pretty graphs.

link|flag
vote up 0 vote down

We use the community edition of RallyDev and it makes nice burndown charts. The problem is that our team has not yet been able to do a solid job of entering in data to keep the burndown information meaningful.

link|flag
vote up 0 vote down

We also use the community edition of RallyDev that has nice charts. I find it to be an excellent tool once you work out which bits of it you really want to use. There is a huge amount of fields and functionality that most people wouldn't use which could be a confusing problem for bigger teams.

link|flag
vote up 0 vote down

We used to use the tools at rallydev.com, but in time we found the tool to simply be to cumbersome for what we wanted.

In time, I moved to just a simple Excel spreadsheet. Every morning before stand up I counted the hours remaining and added the trend line next to an "ideal" burndown line on the chart. I posted it on the wall where we held our morning standups.

link|flag
vote up 0 vote down

We you Team Foundation Server and with conchango's scrum templates using the built in burndown through this nice little scrum dashboard

http://www.codeplex.com/scrumdashboard

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.