You have data. You need a chart. But which one?
The wrong chart type can turn clear data into confusion. A pie chart with 12 slices becomes unreadable. A line chart connecting unrelated categories misleads viewers. A scatter plot for categorical data makes no sense. Yet these mistakes happen every day in business reports, academic papers, and dashboards worldwide.
The right chart type, on the other hand, makes insights obvious. It guides the eye to the story in your data. It answers questions before they're asked. The difference between a confusing and a clarifying visualization often comes down to one decision: which chart to use.
This guide provides a systematic framework for choosing chart types based on three critical factors:
- Your data structure (what you're working with)
- Your message (what you want to communicate)
- Your audience (who needs to understand it)
The Three-Question Framework for Chart Selection
Before reaching for a chart type, answer these three questions. Your answers will guide you to the right choice.
Question 1: What Type of Data Do I Have?
Categorical Data (Qualitative)
- Definition: Data that can be grouped into categories
- Examples: Product names, regions, departments, customer segments, yes/no responses
- Key characteristic: No inherent order (except ordinal categories like "small/medium/large")
Numerical Data (Quantitative)
- Definition: Data that represents measurable quantities
- Examples: Revenue, temperature, age, count, percentages
- Subtypes: Continuous (can take any value in a range) and Discrete (specific values only)
Temporal Data (Time-Based)
- Definition: Data with a time component
- Examples: Daily sales, monthly signups, quarterly revenue, hourly traffic
- Key characteristic: Sequential relationship matters
Relational Data (Multivariate)
- Definition: Multiple variables that may be related
- Examples: Customer age vs. spending, temperature vs. ice cream sales, advertising spend vs. revenue
- Key characteristic: Looking for correlations or patterns
Geospatial Data (Location-Based)
- Definition: Data tied to geographic locations
- Examples: Sales by country, COVID cases by state, store locations
- Key characteristic: Spatial relationships matter
Question 2: What Message Am I Trying to Communicate?
Comparison
- "Which is bigger?" "How do these rank?"
- Use when: Showing relative sizes, comparing across categories
- Example: "Which product line generates the most revenue?"
Composition (Part-to-Whole)
- "What are the pieces?" "How is this divided?"
- Use when: Showing how parts make up a total
- Example: "What percentage of budget goes to marketing?"
Distribution
- "How is this spread out?" "What's the pattern?"
- Use when: Showing frequency, range, or clustering
- Example: "How are customer ages distributed?"
Relationship (Correlation)
- "Are these connected?" "Does X affect Y?"
- Use when: Showing correlation between variables
- Example: "Do higher prices lead to lower sales volume?"
Trend Over Time
- "How has this changed?" "What's the trajectory?"
- Use when: Showing change across time periods
- Example: "How has website traffic grown over the past year?"
Question 3: Who Is My Audience?
Technical Experts (Data Scientists, Analysts)
- Can interpret complex visualizations
- Comfortable with scatter plots, box plots, heat maps
- Value precision over simplicity
Business Executives
- Need quick insights
- Prefer simple, clear charts (bar, line, pie with <5 slices)
- Focus on "so what?" and actionable insights
General Public / Non-Technical Stakeholders
- Require intuitive, familiar chart types
- Avoid statistical plots (box plots, violin plots)
- Need clear labels and context
Chart Type Deep Dive: When to Use Each One
1. Bar Chart (Horizontal or Vertical)
Best for: Comparing values across categories
When to use:
- Comparing 2-10 categories
- When precise value comparison matters
- When category names are long (use horizontal bars)
- When you want to show ranking (sort by value)
When NOT to use:
- Showing trends over time (use line chart)
- More than 15 categories (use alternatives or group into "Other")
- Part-to-whole relationships (use pie if <6 categories)
Pro tip: Always start the y-axis at zero for bar charts. Truncated axes distort comparisons.
2. Line Chart
Best for: Showing trends over time (continuous data)
When to use:
- Time series data (daily, monthly, yearly)
- When the connection between points has meaning
- When you want to emphasize the trend or pattern
- Comparing 2-5 metrics with similar scales
When NOT to use:
- Categorical data with no inherent order (use bar chart)
- More than 5-7 lines (becomes cluttered; use small multiples)
- When exact values matter more than trends (use table or bar chart)
Pro tip: Don't connect unrelated categories with lines. "North, South, East, West" are not sequential—use bars.
3. Pie Chart / Donut Chart
Best for: Part-to-whole relationships with few categories
When to use:
- 2-5 categories (maximum 6)
- When one category dominates (>50%)
- When "more than half" or "less than a quarter" is the story
- When showing simple budget allocations
When NOT to use:
- More than 6 slices (use bar chart sorted by size)
- When precise comparisons matter (humans are bad at comparing angles)
- Multiple pie charts for comparison (use 100% stacked bars)
- When values are similar (23% vs 26% looks identical)
4. Scatter Plot
Best for: Showing relationships between two continuous variables
When to use:
- Looking for correlation (positive, negative, or none)
- Identifying clusters or outliers
- Showing distribution of data points
- When each point represents an individual observation
Pro tip: Add a trend line (regression) to make correlation more obvious. Use size or color for a third dimension (bubble chart).
5. Histogram
Best for: Showing the distribution of a single continuous variable
When to use:
- Understanding frequency distribution
- Identifying skewness, outliers, or multiple peaks
- Showing age ranges, income brackets, response times
- When you need to see the shape of the data
Pro tip: Bin size matters! Too few bins hide patterns; too many create noise. Start with square root of n for bin count.
Quick Reference: Chart Type Cheat Sheet
| Your Goal | Data Type | Recommended Chart | Alternative |
|---|---|---|---|
| Compare categories | Categorical | Bar chart | Lollipop chart |
| Show part-to-whole (<6 parts) | Categorical | Pie/donut | Sorted bar |
| Show trend over time | Time series | Line chart | Area chart |
| Show distribution | Continuous | Histogram | Box plot |
| Show correlation | Two continuous | Scatter plot | Density plot |
| Show geographic patterns | Geographic | Choropleth map | Dot map |
| Show cumulative change | Sequential | Waterfall chart | Stacked bar |
Common Chart Selection Mistakes (and How to Fix Them)
Mistake 1: Using Pie Charts with Too Many Slices
Problem: 8+ slice pie chart where humans can't compare angles accurately
Fix: Use a sorted horizontal bar chart instead. Ranking becomes obvious.
Mistake 2: Connecting Unrelated Categories with Lines
Problem: Line chart showing "Revenue by Product" where products aren't sequential
Fix: Use bar or column chart. Lines imply continuity that doesn't exist.
Mistake 3: Dual-Axis Charts That Mislead
Problem: Two y-axes with manipulated scales make unrelated trends appear correlated
Fix: Use two separate charts or indexed values (both starting at 100).
Mistake 4: 3D Charts That Distort Data
Problem: 3D perspective makes bars appear different sizes based on position
Fix: Always use 2D charts. Add visual interest with color, annotations, and good design—not 3D effects.
Conclusion
Choosing the right chart type is both art and science. Science provides the framework—match data structure to visual encoding (bars for comparison, lines for trends, pie for part-to-whole). Art comes in understanding your audience and crafting the clearest message.
Remember the three-question framework:
- What type of data do I have? (Categorical, numerical, temporal, relational, geospatial)
- What message am I trying to communicate? (Comparison, composition, distribution, relationship, trend, location)
- Who is my audience? (Technical experts, executives, general public)
Your next steps:
- Bookmark this guide's decision tree for future reference
- Next time you create a chart, consciously apply the framework
- Show drafts to colleagues and ask: "What's the main insight you see?"
- If they struggle, try a different chart type
- Over time, chart selection becomes intuitive
The best data visualizations are invisible—viewers absorb the insight without thinking about the chart type. By systematically matching your data and message to the right chart, you make your insights obvious and your work more impactful.
For a wide range of chart types and visualization tools, explore 5of10.com with 60+ free chart creators and specialized tools for ratings, progress tracking, maps, and more.