// dashboards

Choosing the right chart type: match the chart to the question

Every chart type is good at answering one kind of question and bad at others. Picking the wrong one doesn't just look worse. It hides the actual answer.

Published 12 Jul 202612 min read23 reads

Start from the question you're actually trying to answer, not from "which chart looks good." Every chart type is built to answer one kind of question well, and other kinds of questions badly.

🎯 Explain Like I'm Hired A pie chart is good at "what fraction of the whole is this slice," but bad at "which of these two similar-sized slices is bigger." People are just worse at comparing angles than comparing bar lengths. Example: if the real question is "which product category grew fastest this year," a line chart per category (showing the trend) answers it directly. A pie chart of this year's totals can't answer that at all. It only shows one moment in time, not change over time.

A question-to-chart mapping worth remembering

  • Comparing values across categories → bar chart.
  • Showing a trend over time → line chart.
  • Showing how parts make up a whole → stacked bar (better than pie once you have more than 3-4 slices, and it also shows change over time if stacked across periods).
  • Showing the spread of values → histogram or box plot, not a bar chart of raw numbers.
  • Showing the relationship between two variables → scatter plot.
  • Showing one number against a target → a stat tile, not a full chart.

Why pie charts are over-used

Pie charts are visually familiar, which is exactly why people reach for them even when a bar chart would show the same data faster and more clearly. A tell-tale sign: if you find yourself adding percentage labels to every slice because the sizes alone aren't clear enough, a bar chart would probably have worked better from the start.

Interactivity doesn't replace the basic mapping

A dashboard tool that lets people hover, filter, and drill down can get away with a slightly more complex chart, since the viewer can interrogate confusing parts themselves. But the underlying question-to-chart mapping still applies to whatever's shown by default, before anyone interacts with it.


Next: The 1-line summary rule