Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Tableau Playbook - Dumbbell Chart

Sep 4, 2019 • 12 Minute Read

Introduction

Tableau is the most popular interactive data visualization tool, nowadays. It provides a wide variety of charts to explore your data easily and effectively. This series of guides - Tableau Playbook - will introduce all kinds of common charts in Tableau. And this guide will focus on the Dumbbell Chart.

In this guide, we will learn about the dumbbell chart in the following steps:

  1. We will start with an example chart and introduce the concepts and characteristics of it.

  2. By analyzing a real-life dataset: Rossmann Store Sales, we will learn to build a dumbbell chart step by step. Meanwhile, we will draw some conclusions from Tableau visualization:

    1. Build the chart based on the basic process.
    2. Optimize and polish the chart with advanced features.

Getting Started

Example

Here is a dumbbell chart example from Data Revelations. From the shape, we can understand why this kind of chart is called a "dumbbell" chart. This example compares the market sales of two pizza companies from 2007 to 2016. We can observe each sales trend separately by points. In the meantime, we can also use line to analyze the gap between Pizza Hut and Domino's.

Concept and Characteristics

A dumbbell chart is a composite chart with circles and lines. It is ideal for illustrating change and comparing the distance between two groups of data points. The dumbbell chart has many aliases, such as DNA chart, gap chart, barbell chart, and connected dot plot.

Like a lollipop chart, the dumbbell chart is used to compare categorical data. It uses circles to highlight values and bars to measure the gap.

On the other hand, the end circle overstates the value and blurs the boundary. Moreover, the lack of baseline makes precise comparison more difficult. There is a variant to solve this problem, as shown in the following chart. This chart uses the normalization technique to unify baselines. It makes it easier to compare magnitudes but at the cost of losing the absolution value of data points.

Dataset

In this guide, we use the Rossmann Store Sales dataset from this Kaggle Competition. Thanks to Rossmann and Kaggle for this dataset.

This dataset contains three-year sales data for 856 stores in Rossmann. Store sales are influenced by many factors, including promotions, competition, school and state holidays, seasonality, and locality.

I have done the data wrangling and feature engineering for this dataset. You can download my version from Github for a better exploratory data analysis.

Basic Process

In order to build a dumbbell chart, we will use the dual axis technique to combine circles and lines.

  1. We start with a line chart:

    dumbbell chart - basic process 1

    1. Drag "Date" into Rows Shelf.
    2. Right-click on "YEAR(Date)" in the Rows Shelf and change the type to Month from discrete Date Parts.
    3. Drag "Sales" into Columns Shelf.
    4. We choose store 216 as our sample store. So we need to drag "Store" into Filter card.
    5. Select only "216" in the filter list of "Store".
    6. Since we want to compare the sales margin between 2013 and 2014, we need to filter the "Date" by year. Drag "Date" into Filter card.
    7. When a date type enters in, the Filter Field [Date] dialog pops up. Choose Years in discrete Date Part and press Next button.
    8. Select "2013" and "2014" in the year list.
    9. For a discrete chart, we'd better switch to Entire View for a nicer visualization.
  2. As a composite chart, the dumbbell chart needs the dual axis technique:

    1. Drag "Sales" to the top side of view, Tableau will show you a dashed line. Now it's time to release the left mouse key. A dual axis is created automatically.
    2. Check Synchronize Axis to synchronize two axes.
    3. To avoid the lines overlap circles, we need to move the lines to the back. Right-click top x-axis and click Move marks to back.
    4. Since the two x-axes are synchronized, we can hide the top x-axis by deselecting Show Header.

    dumbbell chart - basic process 2

  3. Tableau automatically converts these two views into Line, so we need to turn the first axis back to Circle:

    1. Open the first Marks card and choose Circle as the mark type.
    2. Drag "Date" into the first Marks - Color.
  4. In the second view, we can see the lines connect all the monthly sale points. But what we really need is connecting 2013 and 2014 year points in each month. Therefore, we need to customize the path. Drag "Date" into the second Marks - Path.

  5. Currently, most points are concentrated on the right side of view. We can hardly compare the size of dumbbells. Since we focus on the sales margin and relative comparison, we consider truncating axis. Make some explanations if you are worried about misleading graph.

    Right-click on the x-axis and uncheck Include zero.

  6. In the last step, let's polish this chart:

    1. Edit the Title to "[Store 216] Monthly Sales Margin between 2013 and 2014".
    2. Rename the Legend as "Year".
    3. Remove the grid lines and make our data present cleaner: navigate to Format -> Lines... and set Grid Lines as None in Columns.
    4. Right-click on the vertical header and click Format... Expand Dates in Default Option from Header tab and choose Abbreviation.

    dumbbell chart - basic process 3

A basic dumbbell chart is completed.

Analysis:

This is a very nice way of comparing sales margin between two years. From this dumbbell chart, we can analyze the monthly sales distribution and compare the sales gap as well.

But there is a defect in the basic version, which is not convenient to identify whether sales are increasing or decreasing. That is what we are going to do next.

Advanced Features

In this section, we will add more advanced features to enhance the express ability of dumbbell chart.

  1. We intend to show the direction of dumbbell, especially highlighting the months of sale decline. As preparation, we need to create some calculated fields.

    dumbbell chart - advanced usages 1

    1. Create two Calculated Fields: "2013 Sales" and "2014 Sales".

      For "2013 Sales", input the formula: IF YEAR([Date]) == 2013 THEN [Sales] END.

      The same for the second field, except changing to 2014.

    2. Based on these two fields, we create "Sales Margin Type" to highlight dumbbell lines. The formula is as follows:

      IF {FIXED [Store], MONTH([Date]) : SUM([2013 Sales])} > 
      {FIXED [Store], MONTH([Date]) : SUM([2014 Sales])} 
      THEN "Decrease"
      ELSE "Increase" END
      
  2. Now we use the conditional formatting technique to classify the line colors based on "Sales Margin Type".

    1. Drag "Sales Margin Type" into the second Marks - Color.
    2. Because we are concerned about the months in which sales fall, we’ll turn "Decrease" into red, more eye-catching, and "Increase" into gray, less visible.
  3. Add well-formatted currency labels on the red lines.

    1. First, we need to calculate the margin sales and only display the values which decreased.

      Create Calculated Field "Sales Marge Labels" and Convert to Dimension. The formula is as follows:

      IF [Sales Margin Type] = "Decrease" THEN 
      {FIXED [Store], MONTH([Date]) : SUM([2014 Sales])} - 
      {FIXED [Store], MONTH([Date]) : SUM([2013 Sales])} END
      
    2. Drag "Sales Marge Labels" into the second Marks - Label.

    3. Expand the Label option and edit the Font. Change the label color to red. Set the Font size to 10 and Bold.

    4. Expand the Alignment pane, then choose Center in Horizontal and Top in Vertical.

    5. Format "Sales Marge Labels" as Currency (Custom) and set Decimal places to 0.

    dumbbell chart - advanced usages 2

  4. Put on the finishing touches:

    1. Right-click "Store: 216" in Filters and check Show Filter.
    2. Convert this filter to Single Value (slider). Now we can slide to show whichever store you like.
    3. Bind the title with Parameter by clicking Insert and choosing "Store".

    dumbbell chart - advanced usages 3

Analysis:

With the help of conditional formatting on colors and labels, the dumbbell chart highlights the months of sales falling. This is a warning signal that users need extra attention. With a quick glance, we can see that sales of store 216 fell by $16438 in March and $3453 in June.

Conclusion

In this guide, we have learned about one of the composite charts in Tableau - the Dumbbell Chart.

First, we introduced the concepts and characteristics of a dumbbell chart. And then we learned the basic process to create a dumbbell chart. In the end, we highlight important data by conditional formatting on colors and labels.

You can download this example workbook Composite Charts from Tableau Public.

In conclusion, I have drawn a mind map to help you organize and review the knowledge in this guide.

I hope you enjoyed it. If you have any questions, you're welcome to contact me recnac@foxmail.com.

More Information

If you want to dive deeper into the topic or learn more comprehensively, there are many professional Tableau Training Classes on Pluralsight, such as Tableau Desktop Playbook: Building Common Chart Types.

I made a complete list of my common Tableau charts serial guides, in case you are interested:

CategoriesGuides and Links
Bar ChartBar Chart, Stacked Bar Chart, Side-by-side Bar Chart, Histogram, Diverging Bar Chart
Text TableText Table, Highlight Table, Heat Map, Dot Plot
Line ChartLine Chart, Dual Axis Line Chart, Area Chart, Sparklines, Step Lines and Jump Lines
Standard ChartPie Chart
Derived ChartFunnel Chart, Waffle Chart
Composite ChartLollipop Chart, Dumbbell Chart, Pareto Chart, Donut Chart