Dashboard Design: Visualization Choices and Configurations | Splunk (2024)

In our Part 1 of Dashboard Design, we reviewed dashboard layout design and provided some templates to get started. In this Part 2, we’ll be walking through:

  1. Various visualization types and the best ways to configure them for your use case, and
  2. Visualization color palette types to effectively communicate your story

Visualization Types

There are many visualization types and configurations available to choose from. In general, keep your visualizations as simple and straightforward as possible to avoid distraction and highlight only the most important information. If there is too much unnecessary information on the page it can be overwhelming and focus can be misdirected to unimportant details.

Timeseries

Charts based on the horizontal axis typically display time series data. The visualization represents data over a period of time and is useful to understand trends, highlight anomalies, and possibly compare multiple series.

A basic time series chart can be displayed using the `timechart` command. For example, if you’d like to investigate which days of the week have the most sales:

index=_internal| timechart span=1d count

Dashboard Design: Visualization Choices and Configurations | Splunk (1)

A line chart is the best time series chart to understand continuous trends.

To determine whether a certain person had any noticeable differences in sales:

index=_internal| timechart span=1d count by user

Dashboard Design: Visualization Choices and Configurations | Splunk (2)

A line chart is the best time series chart to understand and compare trends.

Stacked charts represent the accumulation of more than one data series. If there’s a data series of central importance, position it directly on the axis in order to best see its development over time. Taking the example above, we can use this configuration to understand the charts above in one; both how many sales are made in total each day, with an additional breakdown by user for further investigation on the trends:

Dashboard Design: Visualization Choices and Configurations | Splunk (3)

A column chart is the best time series chart to understand discrete data points, especially summed

If we don’t care to see the total number of sales, but want to clearly compare who is making the most sales per day, we can use a stacked chart because the accumulation of all data adds to a whole in this case:

Dashboard Design: Visualization Choices and Configurations | Splunk (4)

An area chart is the best time series chart to understand continuous quantities

Categorical

Bar charts are typically used to compare data of one period or point in time across multiple categories. By being on an axis, each category is more easily compared using a common baseline.

A basic categorical chart can be displayed using the `stats` command. For example, if you’d like determine which product had the most sales last year:

index=_internal| stats count by product

Dashboard Design: Visualization Choices and Configurations | Splunk (5)

If you’d like to add a second dimension the `chart` command is useful here. For example, comparing sales across products, with an additional breakdown by person:

index=_internal| chart count by user product

Dashboard Design: Visualization Choices and Configurations | Splunk (6)

Categorical Part to Whole

Only use a pie chart if you have a single series and would like to highlight how the partial categorical elements add up to a whole.

For example, we can highlight the percentage Mary contributed to sales last year:

index=_internal| stats count by user

Dashboard Design: Visualization Choices and Configurations | Splunk (7)

Part to Whole

To see how a single element measures up to a threshold, or multiple thresholds you may use a single value radial or gauge.

For example, display the current sales compared to the sales goal for the year:

index=_internal| stats count

Dashboard Design: Visualization Choices and Configurations | Splunk (8)

Or if you would also like gauge against the amount required to match costs, and highlight the profit:

Dashboard Design: Visualization Choices and Configurations | Splunk (9)

Metric

If you can, use simple single values to display metrics as they communicate data in a straightforward way.

Correlation

Correlation charts are used to investigate the relationship between 2 or more variables.

The most useful visualization for displaying the relationship between 2 quantitative variables is a scatter chart. For three quantitative variables, bubble charts or parallel coordinates are good choices. For example, you can investigate possible correlations between number of stores, sales made, and cost. In the following bubble chart, we can see “Temperature” and “Sales” are linearly correlated for “Product 1”, but they are not correlated for “Product 2”.

Dashboard Design: Visualization Choices and Configurations | Splunk (10)

Flow

Charts with links are a great way to show relationships between entities. Sankey diagrams are best used to show amounts moving between specific entities such as money flow between countries, data amounts between applications, and more.

Alternatively, link graphs show connections between distinct values in various fields. The aggregated node values allow users to quickly visualize highly connected data points that may be otherwise overlooked.

Dashboard Design: Visualization Choices and Configurations | Splunk (11)

Geographical

Maps and choropleth SVGs can be used to emphasize relationships between elements in certain locations or areas.

A map is used to show geospatial data. Bubble layers are a great way to visualize count distributions across geographic locations, and marker layers to identify specific locations. Alternatively, choropleth layers visualize relationships between elements in certain areas if counts can be aggregated. Additional tooltip fields can be helpful to add labels or other qualitative data about specific markers or regions.

If you have a custom shape, such as a building floor plan, any custom Scalable Vector Graphic (SVG) image can be used to display the corresponding contextual data.

Visualization Colors

This section introduces the best practices for choosing colors for your visualizations – find a mapping from data values to colors. You can distinguish the design choices for mapping the data values by whether the data attribute is categorical or ordinal. Ordinal attributes can be further distinguished by whether the data is sequential or diverging. Colors can be understood by three channels: luminance, hue, and saturation[1]. Luminance and saturation are magnitude channels, and they are effective for ordinal data encoding. At the same time, hue is an identity channel, which is very effective for representing categorical data and showing groupings.

Dashboard Design: Visualization Choices and Configurations | Splunk (12)

Categorical Colormap

Categorical colormaps use different color hues to encode categories. This visual encoding is highly effective among all types of visual encodings, such as using shapes and sizes. The following is an example of mapping the three categories “California,” “Washington,” and “Oregon” into blue, green, and yellow colors.

Dashboard Design: Visualization Choices and Configurations | Splunk (13)

Studies show the number of discriminable colors for coding small separated regions is usually limited to between six and twelve bins, and choosing colors from opponent color axes is recommended. And the chosen colors should be close in luminance. You should avoid using a large number of colors, especially when the colored regions are small and not contiguous. In the following example[2], 21 colors are used to encode chromosomes. The color representations are distinguishable when the regions are large and similar colors are next to each other (right), but only twelve bins of colors can be distinguished from each other when used in the small regions (left.)


Dashboard Design: Visualization Choices and Configurations | Splunk (14)

Ordered Colormap - Sequential

A sequential colormap encodes a range of values from a minimum to a maximum value. The following marker gauge visualization example linearly maps the increasing bin values of “Custom Churning Rate” to a decreasing lightness of purples.

Dashboard Design: Visualization Choices and Configurations | Splunk (15)

Ordered Colormap - Diverging

A diverging colormap has two hues at the endpoints and a neutral color as a midpoint. For example, the choropleth map below uses the blue and red hues to represent the increased and decreased revenue, respectively.

Dashboard Design: Visualization Choices and Configurations | Splunk (16)

Color Blindness

Choosing colors should take into account the common problem of color blindness. The following shows an example where lousy color palettes can cause perception issues for people with deuteranopia (red-green color blindness.) People with normal color vision can distinguish divergent red and green colors, but it's difficult for people with deuteranopia.

Dashboard Design: Visualization Choices and Configurations | Splunk (17)

The red-green color blindness is not limited to simply telling red apart from green. The confusion can extend to red from black, blue from purple, and brown from green for different color blindness. Tools like Colorblindly (used above) can help to check your color palette. You could avoid using only the hue channel to encode information or mapping information to colorblind-unfriendly colors. If using such colors are strong convention in some practice, you could also use other visual channels such as shape or size to encode the data, for example:

Dashboard Design: Visualization Choices and Configurations | Splunk (18)

References:
[1] Tamara Munzner. Visualization Analysis and Design. A K Peters Visualization Series, CRC Press, 2014.
[2] Sinha AU, Meller J. Cinteny: flexible analysis and visualization of synteny and genome rearrangements in multiple organisms. BMC Bioinformatics. 2007

Further Resources

  • Dashboard Studio Tutorial
  • Dashboard Studio Tech Talk
  • Splunk Dashboard Studio Documentation
  • Examples Hub - Find the Examples Hub from the Dashboards page in Search & Reporting
  • Dashboard Templates
  • Splunk Ideas - Dashboard Studio for feature or enhancement Requests
  • for questions

This blog was co-authored by Tara Yuen and Chuan Wang.

Dashboard Design: Visualization Choices and Configurations | Splunk (19)

Lizzy Li

Lizzy is a Principal Product Manager covering Splunk Dashboards and Analytics Workspace. She’s passionate about making it easy to visualize your data in Splunk.

Dashboard Design: Visualization Choices and Configurations | Splunk (2024)
Top Articles
Latest Posts
Article information

Author: Jonah Leffler

Last Updated:

Views: 5860

Rating: 4.4 / 5 (45 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Jonah Leffler

Birthday: 1997-10-27

Address: 8987 Kieth Ports, Luettgenland, CT 54657-9808

Phone: +2611128251586

Job: Mining Supervisor

Hobby: Worldbuilding, Electronics, Amateur radio, Skiing, Cycling, Jogging, Taxidermy

Introduction: My name is Jonah Leffler, I am a determined, faithful, outstanding, inexpensive, cheerful, determined, smiling person who loves writing and wants to share my knowledge and understanding with you.