RadialGauge
Demo
Installation
import {RadialGauge} from 'uxp/components';Examples
<RadialGauge
value={10}
min={0}
max={100}
/><RadialGauge
value={10}
min={0}
max={100}
label={() => <>Equipment Heat</>}
legend={true}
gradient={true}
thickness={20}
largeTick={5}
smallTick={2}
colors={[
{color: 'cyan', stopAt: 12.5},
{color: 'green', stopAt: 70},
{color: 'orange', stopAt: 87.5},
{color: 'red', stopAt: 100},
]}
/>Properties
Name
Type
Description
min
type
max
type
value
type
colors
type
label
type
legend
type
tickColor
type
className
type
styles
type
gradient
type
thickness
type
largeTick
type
smallTick
type
backgroundColor
type
labelColor
type
needleColor
type
Last updated