Challenge 1: Choosing a Chart for a 24-Month Trend — Solution Walkthrough Best fit: a Line chart. Reasoning: The question being asked is explicitly about a TREND across a continuous time sequence — 24 consecutive months in order. A line chart is built specifically to make direction and rate of change over a continuous axis easy to read at a glance: the eye can immediately see whether the line is generally sloping up, sloping down, or staying roughly flat, and can spot specific months where revenue spiked or dipped relative to the overall pattern. Chart type to specifically avoid: a Pie chart. A pie chart only shows a single snapshot's part-to-whole composition — it has no concept of time or sequence at all, and 24 months of revenue data doesn't have a meaningful "whole" to divide into slices in the first place. There is no way to represent "revenue is trending upward over time" using a pie chart; the question and the chart type are fundamentally mismatched, not just a matter of stylistic preference. Notes: - A column chart could technically also show 24 bars in sequence, and would work reasonably well too — but a line chart's continuous connecting line makes the overall trend direction even more immediately obvious than 24 separate discrete bars would. - This is exactly this chapter's core lesson: the right chart type is decided by what QUESTION is being asked of the data, not by which chart type looks the most sophisticated or is fastest to insert.