Skip to content

GaugeChart

What It Does

Shows readiness, freshness, reliability, or quality as a dial.

Signature

db.GaugeChart(value: 'float', min: 'float' = 0, max: 'float' = 100, title: 'Optional[str]' = None, label: 'Optional[str]' = None, color: 'Optional[str]' = None, height: 'int' = 220) -> 'VNode'

Parameters

Name Type Default Notes
value float required
min float 0
max float 100
title Optional[str] None
label Optional[str] None
color Optional[str] None
height int 220

Example

import brickflowui as db

node = db.GaugeChart(value=72, title="Command center", label="Pipeline health", height="320px")

Integration Notes

  • This component composes cleanly with layout primitives such as Card, Grid, Row, and Column.
  • Prefer controlled state from Python when the value matters to your business logic or backend query layer.

Responsive Notes

Check the component inside a realistic layout, not only in isolation, so spacing, overflow, and action density stay comfortable on smaller screens.

Accessibility Notes

Pair this component with clear visible copy and predictable state changes so keyboard and assistive-technology users are not surprised.