Gauge

Gauge Chart Examples

Gauge charts are useful to show simple values as a percentage of a target or maximum

Basic Gauge Chart

-- @chart: gauge
-- @title: Basic Gauge
-- @subtitle: A Basic Gauge Chart
SELECT Conversion_Rate
FROM (
  VALUES (35)
) AS t1 (Conversion_Rate);
An example of a basic gauge chart
CONVERSION_RATE

35.0

Last updated

Was this helpful?