| metric | value |
|---|---|
| fillRate | 78 |
| responseRate | 64 |
| repeatRate | 41 |
<Chart.RadialBar />API
| Prop | Type | Default | |
|---|---|---|---|
background | boolean | true | Draw the unfilled remainder of each track. |
dataKey | string | — | Field holding each track's value. Defaults to the first value key. |
endAngle | number | 360 | Where a full track ends. A partial sweep draws a gauge rather than a ring. |
gap | number | 4 | Pixels between two tracks. |
innerRadiusRatio | number | 0.3 | Fraction of the radius left hollow in the middle. |
inset | number | 8 | Pixels kept clear inside the plot edge. |
max | number | — | Value that fills a whole track. Defaults to the value axis maximum. |
nameKey | string | — | Field naming each track's config entry. Defaults to the category field. |
startAngle | number | 0 | Where a full track begins, in radians clockwise from 12 o'clock. |
Plus every <g> prop. Source: chart/components/chart-radial-bar.tsx.
max is what makes a radial bar readable as a proportion — without it the
tracks are scaled to the largest value present, so "full" means nothing fixed.
Set it when the chart is a gauge.