Documentation / @ripl/charts / RadarChartOptions
Interface: RadarChartOptions<TData>
Defined in: charts/src/charts/radar.ts:84
Options for configuring a RadarChart.
Extends
Type Parameters
| Type Parameter | Default type |
|---|---|
TData | unknown |
Properties
| Property | Type | Description | Inherited from | Defined in |
|---|---|---|---|---|
animation? | boolean | Partial<ChartAnimationOptions> | Animation configuration, or a boolean toggling all transitions. See ChartAnimationOptions. | BaseChartOptions.animation | charts/src/core/chart.ts:89 |
autoRender? | boolean | Whether the chart renders automatically on construction and after every Chart.update. Defaults to true. | BaseChartOptions.autoRender | charts/src/core/chart.ts:83 |
axes | string[] | Axis labels arranged clockwise around the chart, one per data item. | - | charts/src/charts/radar.ts:90 |
data | TData[] | The dataset, with one item per axis (in axis order). | - | charts/src/charts/radar.ts:86 |
format? | ValueFormatInput | Format applied to point values shown as text (e.g. tooltips). | - | charts/src/charts/radar.ts:98 |
legend? | ChartLegendInput | Legend configuration. Shown by default when there is more than one series. | - | charts/src/charts/radar.ts:96 |
levels? | number | Number of concentric grid rings. Defaults to 5. | - | charts/src/charts/radar.ts:94 |
maxValue? | number | Maximum value mapped to the outer ring (defaults to the largest value across all series). | - | charts/src/charts/radar.ts:92 |
padding? | Partial<ChartPadding> | Space reserved around the chart, per edge, in pixels. | BaseChartOptions.padding | charts/src/core/chart.ts:85 |
series | RadarChartSeriesOptions<TData>[] | The series to overlay, each rendered as a filled polygon. | - | charts/src/charts/radar.ts:88 |
title? | string | Partial<ChartTitleOptions> | Chart title as plain text, or a ChartTitleOptions object for full control. | BaseChartOptions.title | charts/src/core/chart.ts:87 |