Radar Chart
Radar Chart
Spider/radar charts for comparing multiple variables across categories.
Variants
Core radar chart configurations.
API Reference
| Prop | Type | Default | Description |
|---|---|---|---|
| Data | IEnumerable<TData> | required | The data collection to render. |
| DataKey | string | required | Property on each data item mapped to the series value (on Radar). |
| Name | string? | DataKey | Legend and tooltip series name. |
| Color | string? | auto | Line and fill color for the series. |
| FillArea | bool | false | Whether to fill the enclosed area. |
| AreaOpacity | double | 0.3 | Fill opacity when FillArea is true (0–1). |
| Emphasis | bool | false | Whether to highlight the series on legend hover. |
| Shape | RadarShape | Polygon | Grid shape: Polygon or Circle (on RadarGrid). |
| SplitNumber | int | 5 | Number of concentric rings in the grid (on RadarGrid). |
| ShowIndicatorLabels | bool | true | Whether to render axis indicator labels (on RadarGrid). |
| IndicatorColor | string? | null | CSS color for indicator label text (on RadarGrid). |
| IndicatorFontSize | int | 12 | Font size for indicator labels in px (on RadarGrid). |