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);

CONVERSION_RATE
35.0
Last updated
Was this helpful?