Skip to content

Radial Gauge Flow

This flow covers the 6 steps for the circular pointer gauge — the Radial Gauge. Unlike the standard Cartesian/Circular flows, Step 4 is the dedicated Radial Gauge Axis Design screen where all visual configuration is done. Steps 5 (Series Design), 6 (Add Series), and 7 (General Design) are skipped.

Chart Types Using This Flow

Chart Type Primary Use Page
Radial Gauge Single-value monitoring (OEE, temperature, pressure, speed) Radial Gauge

Linear Gauge Is a Separate Flow

Linear Gauge uses a different Axis Design screen as a horizontal/vertical progress bar. → Linear Gauge Flow


Flow Diagram

flowchart LR
    A[1. Group<br/>Gauge] --> B[2. Chart Type<br/>Radial Gauge]
    B --> C[3. Compass Record]
    C --> D[4. Radial Gauge Axis Design<br/>Range · Bands · Pointer]
    D --> H[8. Card Design]
    H --> I[9. Display Info]

Step Pages

This flow runs 6 of the wizard steps (5, 6, and 7 are not present):

# Step Page Key Content
1 Group Selection 01 — Group Selection Select the Gauge card
2 Chart Type Selection 02 — Chart Type Radial Gauge card
3 Compass Record Selection 03 — Compass Record Single row, single numeric value
4 Radial Gauge Axis Design 04 — Radial Axis Design Min/Max, angle, range bands, pointer, value source
8 Card Design 08 — Card Design Refresh, Border, Info Card
9 Display Information 09 — Display Info Name, Tags, Folder

Steps Not in This Flow

Skipped Step Purpose in the standard flow Why it isn't needed here
5 — Series Design Color, marker, and data label settings for line/bar series The gauge shows a single instantaneous value; there is no "series" concept
6 — Add Series Add a second/third series to the chart The gauge does not support multiple series
7 — General Design Title, legend, tooltip, axis, zoom settings All visual settings (range bands, pointer, angle, labels) are consolidated in Step 4 — Axis Design

Data Requirements

The Radial Gauge query must return a single row with a single numeric value:

SELECT ROUND(oee_percent, 1) AS oee
FROM oee_calc
ORDER BY ts DESC
LIMIT 1;
Column Type Role
Value column NUMERIC Instantaneous value displayed on the gauge

Next Step

01 — Group Selection