How to Make an Area Chart in Tableau

Cody Schneider8 min read

Seeing how parts of a whole change over time is a core task in data visualization, and the area chart is a fantastic tool for exactly that. It beautifully illustrates volume and trends, making it simple to spot patterns at a glance. This guide will walk you through what area charts are, when to use them effectively, and how to build them step-by-step in Tableau.

GraphedGraphed

Still Building Reports Manually?

Watch how growth teams are getting answers in seconds — not days.

Watch Graphed demo video

What is an Area Chart and When Should You Use One?

An area chart is essentially a line chart with the space between the line and the axis filled in with color. This simple addition shifts the focus from just the rate of change (like a line chart) to the magnitude or volume of that change over a period. It helps your audience see and feel the substance of the numbers you're presenting.

The primary use for an area chart is to show the change in a quantitative value over a continuous dimension, which is almost always time. Think about tracking things like:

  • Total website sessions by month
  • Monthly sales revenue over the past two years
  • Number of tickets closed by quarter

Standard vs. Stacked Area Charts

There are two main types of area charts you'll encounter, each suited for a different purpose.

A Standard Area Chart displays a single data series. It's clean, simple, and excellent for showing a volume trend over time. However, if you try to layer multiple standard area charts on top of each other, the series in the background can get hidden, making it a poor choice for comparing multiple categories.

A Stacked Area Chart fixes this visibility problem. It displays multiple data series stacked one on top of the other. This type of chart excels at showing the part-to-whole relationship of different categories and how their composition changes over time. For example, you could use a stacked area chart to show total sales broken down by product category each month. You can see both the total sales trend (the top edge of the entire colored area) and how much each category contributed to that total.

GraphedGraphed

Still Building Reports Manually?

Watch how growth teams are getting answers in seconds — not days.

Watch Graphed demo video

Preparing Your Data for Tableau

Before jumping into Tableau, ensure your data is structured for success. For an area chart, you need at least two essential components:

  • A Time Dimension: This is your continuous variable, usually a date or timestamp. Make sure your dates are in a consistent format that Tableau recognizes (e.g., MM/DD/YYYY).
  • A Numeric Measure: This is the value you want to track over time, like sales, users, or quantities. This should be a continuous numerical field.
  • (Optional) A Categorical Dimension: If you want to create a stacked area chart, you'll need a third field that segments your numeric measure, such as "Region," "Product Category," or "Traffic Source."

For this tutorial, we'll use the "Sample - Superstore" dataset that comes with Tableau, so you can easily follow along.

How to Make a Basic Area Chart in Tableau (Step-by-Step)

Let's build a simple area chart to visualize total sales over time. This foundational chart is the basis for more advanced versions.

Step 1: Connect to Your Data and Set Up the View

First, open Tableau and connect to the Sample - Superstore dataset. Once the data is loaded, you'll see your Dimensions and Measures in the left-hand pane.

Drag the Order Date dimension and drop it onto the Columns shelf. By default, Tableau will likely aggregate this to YEAR(Order Date). For a more granular view, we'll want to change this.

Step 2: Adjust the Date Granularity

We want to see a continuous trend over time, not just discrete yearly totals. Right-click the blue YEAR(Order Date) pill on the Columns shelf. In the dropdown menu, select the second Month option (the one below the line dividers, showing as May 2015). This changes the date from a discrete part to a continuous value.

You'll know you did it right when the pill on the Columns shelf turns green. Green pills in Tableau signify a continuous axis, while blue pills signify discrete headers.

Step 3: Add Your Measure

Now, find your measure in the data pane. Drag the Sales measure and drop it onto the Rows shelf. Tableau will automatically generate a line chart, which is the perfect starting point.

GraphedGraphed

Still Building Reports Manually?

Watch how growth teams are getting answers in seconds — not days.

Watch Graphed demo video

Step 4: Change the Mark Type to Area

This is the final step to transform your line chart. On the Marks card (typically to the left of your visualization), you'll see a dropdown menu that likely says "Automatic."

Click this dropdown menu and select Area from the list. Your line chart will instantly fill in, becoming a complete area chart showcasing the volume of sales over time.

And that's it! You've successfully created a standard area chart in Tableau. You can customize the color or add labels from the Marks card to fine-tune its appearance.

How to Create a Stacked Area Chart in Tableau

Now that we have our base, let's turn it into a stacked area chart to see how different product categories contribute to our total sales. This requires just one simple, extra step.

Step 1: Select Your Categorical Dimension

Start with the area chart we just created. In your Dimensions list, find the field you want to use for segmentation. For our example, we'll use Category.

Step 2: Add the Dimension to Color

Drag the Category dimension from the data pane and drop it directly onto the Color target on the Marks card.

Instantly, Tableau divides the single area chart into three colored sections - Furniture, Office Supplies, and Technology. These segments are stacked on top of one another, and Tableau automatically creates a color legend. Now, you can not only see the total sales trend but also the relative contribution of each category over time.

Tips for Better Area Charts

Building the chart is just the first step. Here are a few tips to make your area charts more insightful and easier to read.

  • Adjust Opacity: If you are working with overlapping (unstacked) area charts, decrease the color opacity on the Marks card. A 50-75% opacity level makes it possible to see hidden series and spot intersections more clearly.
  • Format Tooltips: A good tooltip provides context without cluttering the visualization. Edit your tooltips to include relevant information, like the specific date, category, and sales value, so users can explore the data by hovering.
  • Use a Dual-Axis Chart: Combine an area chart with a line chart to show a volume and a discrete metric simultaneously. For instance, you could show total sales as an area chart and the number of customers as a line chart. To do this, drag a second measure to the Rows shelf, right-click its pill, and select Dual Axis.
  • Be Mindful of Sorting: The order of segments in a stacked area chart matters. Consider placing the most stable or largest category at the bottom and more volatile categories on top. You can manually reorder the items in the color legend to change the stacking order.

Common Mistakes to Avoid

Area charts are powerful, but they can also be misleading if used incorrectly. Watch out for these common pitfalls.

1. Too Many Categories

The number one mistake is creating a "spaghetti chart." A stacked area chart with more than 4-5 categories becomes a cluttered mess of indecipherable colored bands. The audience can't track any single trend, and the chart loses all its value. If you have more than five categories, consider grouping the smaller ones into an "Other" category or choosing a different chart type, like a treemap.

GraphedGraphed

Still Building Reports Manually?

Watch how growth teams are getting answers in seconds — not days.

Watch Graphed demo video

2. Misinterpreting Individual Segments

Remember that in a stacked chart, only the bottom-most segment has a stable baseline (the axis). Every other segment's baseline is the top of the one below it. This makes it very difficult to judge the true trend of an individual segment in the middle of the stack. A segment might look flat, but if the one below it is growing, your segment is actually growing too. Stacked charts are best for showing composition, not for precisely comparing the trends of individual components.

3. Using a Non-Continuous, Irregular X-Axis

Area charts are designed to show a continuous flow over time. If your x-axis has irregular intervals or is based on a non-sequential dimension, the area chart's shape will be illogical and misleading. Stick to using a continuous and logical axis, like a consistent timeline.

Final Thoughts

You've now learned how to create, build upon, and refine area charts in Tableau. These visualizations are a cornerstone of effective reporting, giving you a clear way to represent volume and composition trends over time for your audience.

While creating charts manually in a tool like Tableau gives you incredible control, we know that the process of connecting data, dragging pills, and configuring views still takes time. At Graphed , we use natural language to automate this dashboard-building process. You can simply connect sources like Google Analytics or your CRM and ask, "Create a stacked area chart of our website user sessions by country this quarter," and get an interactive, live-updating visualization in seconds. This allows everyone on your team, regardless of technical skill, to get answers and build insightful reports without the steep learning curve.

Related Articles

How to Enable Data Analysis in Excel

Enable Excel's hidden data analysis tools with our step-by-step guide. Uncover trends, make forecasts, and turn raw numbers into actionable insights today!