Radar Chart

Radar (spider) chart for comparing multi-dimensional data across categories.

Basic Usage

<ArcadiaRadarChart TItem="SkillProfile" Data="@data"
                 LabelField="@(d => d.Skill)"
                 Series="@series" Height="380" />

Parameters

ParameterTypeDefaultDescription
LabelFieldFunc<T, string>Category label selector
SeriesList<SeriesConfig<T>>Series configs
GridRingsint5Number of concentric grid rings
ShowFillbooltrueFill polygon area
ShowPointsbooltrueShow data point dots
HoverDimOpacitydouble0.05Opacity of non-hovered series when any series is hovered (0 = fully hidden, 1 = no dimming)
HoverFillOpacitydouble0.35Fill opacity of the hovered series polygon
GridRingOpacitydouble0.15Opacity of the concentric grid rings (0.0-1.0)

Plus all shared ChartBase parameters.

Events

EventTypeDescription
OnPointClickEventCallback<PointClickEventArgs<T>>Fired when a data point is clicked. Receives item, index, and series context