Choosing the Right Visualization

~5 min read

Choosing the Right Visualization

All seven visualizations display your data differently. Choosing the wrong one can obscure your insight — a Gauge where you need a trend, a Table where you need a total.

Quick Reference

Visualization The question it answers Needs a goal? Time-series?
Metric "Am I on track for my target?" Recommended Optional (Trend flag)
Sparkline "What has the trend looked like, and where do I stand?" Optional Yes — required
Chart "What does the trend shape look like in detail?" No Yes — required
Bar "How do these items or values compare side by side?" Optional No
Gauge "How close am I to my target, at a glance?" Yes No
Badge "What is the current count/status?" No No
Table "Which items rank highest?" No No

Metric

Metric is the workhorse visualization for OKR dashboards. It shows a large hero number, a vs-prior percentage change pill, an OKR goal statement, and a progress bar filling toward the goal.

Choose Metric when:

Skip Metric when: The trend shape over time is as important as the total. Use Sparkline instead.


Sparkline

Sparkline combines a headline number with a trend line chart — you see the total and the daily shape in one card.

Choose Sparkline when:

Requires: GROUP BY day in the query and enough days in the window to produce a meaningful line.


Chart

Chart is Sparkline with the trend line given the full card area and the hero number removed. The underlying query is identical; the layout emphasises the shape over the total.

Choose Chart when:

Tip: Pair a Metric (for the goal and total) with a Chart (for the trend) from the same data source. The Metric answers "are we on track?" and the Chart answers "how did we get here?"


Bar (Horizontal Bar Chart)

Bar renders values as horizontal bars — easy to compare magnitudes across items or to show a single value's progress against a goal line.

Choose Bar when:

Skip Bar for time-series data — Bar does not plot daily values. Use Sparkline or Chart for trends.

Supports goals: Yes. When a goal is set, a vertical goal line is drawn on the bar chart.


Gauge

Gauge renders an arc/dial that fills from 0% to 100% as you approach your goal. The arc is the entire message — there is no vs-prior comparison pill and no trend line.

Choose Gauge when:

Skip Gauge when:

Requires: A goal (set via the Simple tab or a GOAL clause in SmashGL). Without a goal, the arc renders empty.


Badge

Badge is a stripped-down large-number display with no comparison, no goal, and no trend. It shows the number and nothing else.

Choose Badge when:

Skip Badge for revenue, orders, sessions, or any metric where trend and comparison matter.


Table

Table displays ranked rows sorted by a metric — top products by revenue, top variants by items sold.

Choose Table when:

Table is the only visualization that supports dimensional data. All other visualizations expect a single aggregate value or a time-series of single values. If you try to use Metric or Sparkline on a query returning 10 product rows, only the first row will be used.

Still need help?