By Priya Shankar
Burndown Charts Explained: How to Read, Build, and Actually Use Them
Burndown charts are supposed to make sprint planning transparent. They show how much work remains and whether you're on track to complete the sprint.
So why do most product teams use them incorrectly?
The problem isn't the chart. It's that teams treat burndown charts as status reports rather than diagnostic tools. They watch the line trend down and assume the sprint is healthy. They see the line spike and panic without understanding why.
This guide explains what burndown charts actually show, how to read them correctly, and how to use them to make better product decisions.
What a Burndown Chart Really Shows
A burndown chart plots remaining work (vertical axis) against time (horizontal axis) across a sprint.
What it shows:
- How much work was estimated at sprint start
- How much work remains after each day
- Whether the team is on track to complete planned work
- Patterns in how work is being completed
What it doesn't show:
- Quality of the work
- Whether the right features are being built
- Actual customer value delivered
- Technical debt created during the sprint
- Whether engineering decisions support long-term goals
This distinction matters. A perfect downward burndown might mask a sprint full of quick hacks and technical debt. A chaotic burndown might indicate a team building elegant, long-lasting solutions.
Reading a Burndown Chart
The Ideal Burndown
The ideal burndown is a smooth, downward diagonal line from sprint start to zero remaining work at sprint end.
In reality, perfect downward slopes are rare. Here's what to look for:
Linear Decline
Work decreases consistently throughout the sprint. This suggests:
- Steady team velocity
- Good task planning and breakdown
- No major surprises or blockers
- Realistic estimation
What it means for PM: The sprint is predictable. You can plan next sprint with confidence.
Back-Loaded Completion
Work remains high mid-sprint, then drops sharply at the end.
This often indicates:
- Integration work happening late
- Blockers unblocked near the end
- Poor task breakdown (large chunks of work)
- Testing deferred until the end
What it means for PM: Work isn't flowing smoothly. Investigate dependencies and testing practices.
Spikes in Remaining Work
The line goes up instead of down. More work appears than was completed.
This typically means:
- New work was added mid-sprint (scope creep)
- Estimates were wrong and needed adjustment
- Discovered issues expanded the scope
- Team is breaking work into smaller tasks (actually good, but looks bad on the chart)
What it means for PM: Scope changed. Understand why. Did requirements change? Did discovery reveal complexity? Did the team make bad decisions?
Flat Sections
Work remains constant for days with no progress.
Indicators:
- Blockers preventing progress
- Team context-switched to something else
- Estimation is off (completed work doesn't reduce remaining count)
- Work is stuck in code review
What it means for PM: Something broke the flow. Remove blockers and unblock your team.
Burndown Below Zero
Rarely, you might see negative remaining work. This means:
- Original estimates were too high
- Work completed faster than expected
- Scope was reduced mid-sprint
What it means for PM: Be careful here. Fast completion might indicate good estimation, or it might mean the team delivered shallow work without proper testing or edge case handling.
Building a Good Burndown Chart
1. Break Work Into Estimable Chunks
Work should be broken into tasks that are roughly 4-8 hours each. If a task is larger, it's not properly decomposed.
Bad task breakdown:
- "Implement payment system" (2 days)
Good task breakdown:
- "Design payment flow" (4 hours)
- "Implement Stripe integration" (6 hours)
- "Add payment error handling" (4 hours)
- "Test payment flow end-to-end" (6 hours)
Small tasks make progress visible daily.
2. Use Story Points or Time-Based Estimates
Two common approaches:
Story Points: Abstract complexity estimate. A story worth 5 points always represents the same amount of effort relative to a 3-point story.
Hours: Concrete time estimate. "This task will take 6 hours."
Story points are more flexible (account for unknowns better), but hours are more intuitive for product managers.
Pick one and be consistent.
3. Update the Chart Daily
Burndown charts only work if updated frequently. Daily updates show real-time progress and catch blockers early.
Ideal process:
- Team completes standup at 9am
- Update remaining work count by 11am
- Chart updates automatically
4. Track Scope Changes
If new work is added mid-sprint, adjust the baseline. This shows the impact of scope creep visually.
Two lines on the same chart:
- Original burndown (original scope)
- Current burndown (updated scope)
If the current line is above the original, you've added scope.
What Burndown Charts Get Wrong
1. They Measure Activity, Not Progress
A task completed might not actually move the product forward. You could be burning down tasks while building technical debt.
Real question: Are we building the right thing? Burndown shows: Are we completing planned tasks?
These aren't the same.
2. They Don't Account for Work Quality
A 20-hour task completed in 10 hours might indicate brilliance. Or it might indicate the team cut corners.
Burndown doesn't distinguish between these.
3. They Hide Dependencies
If Task B depends on Task A, but Task A isn't done, the team might be stuck even though the chart looks fine.
Burndown shows remaining work, not blocking work.
4. They Assume Estimation Is Accurate
If the team consistently over-estimates, the burndown will look better than actual progress. If they under-estimate, it looks worse.
Good burndown interpretation requires understanding your team's estimation bias.
Using Burndown Charts as a PM
During the Sprint
- Check daily: Is the line trending down? If not, why?
- Identify blockers: Spikes or flat sections indicate problems. Investigate
- Understand scope changes: If new work appears, decide whether to accept it or push to next sprint
- Watch for burn-out patterns: Massive end-of-sprint pushes indicate bad planning or estimation
At Sprint Retrospective
- Analyze the shape: What does the pattern tell you about how the team works?
- Compare to estimates: Where was the team wrong? Why?
- Identify process improvements: What would make the next sprint more predictable?
- Plan better stories: Were stories the right size? Could they be broken down differently?
For Planning
- Use velocity: If the team completed 40 points last sprint, plan for roughly 40 points next sprint
- Account for variation: Don't plan to 100% capacity. Leave slack for unknowns
- Break stories appropriately: Use past sprints to inform task breakdown
Beyond Burndown Charts
Burndown charts are one data point. A complete picture includes:
- Burndown: Planned vs actual completion
- Code review metrics: How long are PRs in review? How many iterations?
- Deployment metrics: How often? How many incidents?
- Quality metrics: Defect escape rate, test coverage
- Learning metrics: How well did we understand the problem when we started?
A sprint with a perfect burndown and poor code quality isn't actually successful.
Getting Burndown Right
- Break work into small tasks (4-8 hours)
- Update daily from standups
- Track scope changes (show original vs updated baseline)
- Interpret carefully (declining line = good, but not complete picture)
- Use as a diagnostic tool (not a report card for the team)
- Combine with other metrics (code quality, deployment frequency, customer feedback)
Frequently Asked Questions
Q: Should burndown be a measure of team performance? A: No. Burndown shows pace, not quality or direction. A team that delivers half as much but builds maintainable code is outperforming a team that burns through low-quality stories. Use burndown to identify issues, not to evaluate people.
Q: What if our burndown never matches the "ideal" line? A: Most teams' don't. The ideal line assumes perfect, uniform work distribution. Real teams have dependencies, blockers, and unknowns. What matters is understanding the pattern and improving it over time.
Q: Should we use velocity or burn down charts? A: Both. Velocity (story points completed per sprint) helps with capacity planning. Burndown (daily remaining work) helps identify issues during the sprint. Together, they give you the full picture.