RadarChartDataset Class

A radar chart is a way of showing multiple data points and the variation between them. They are often useful for comparing the points of two or more different data sets. https://www.chartjs.org/docs/latest/charts/radar.html#dataset-properties.

Definition

Namespace: BlazorBootstrap
Assembly: BlazorBootstrap (in BlazorBootstrap.dll) Version: 0.7+45c8d9adb5970d727cceec44a5ed61aea0016e50
public sealed class RadarChartDataset : ChartDataset<double?>
Inheritance
Object    ChartDatasetNullableDouble    RadarChartDataset

Constructors

RadarChartDatasetInitializes a new instance of the RadarChartDataset class

Properties

BorderCapStyle Cap style of the line. Supported values are 'butt', 'round', and 'square'.
BorderDash Gets or sets the length and spacing of dashes.
BorderDashOffset Offset for line dashes.
BorderJoinStyle Line joint style. There are three possible values for this property: 'round', 'bevel', and 'miter'.
Data Get or sets the Data.
Fill How to fill the area under the line.
HoverBorderCapStyle Cap style of the line when hovered.
HoverBorderDash Gets or sets the length and spacing of dashes when hovered.
HoverBorderDashOffset Offset for line dashes when hovered.
HoverBorderJoinStyle Line joint style. There are three possible values for this property: 'round', 'bevel', and 'miter'.
PointBackgroundColor The fill color for points.
PointBorderColor The border color for points.
PointBorderWidth The width of the point border in pixels.
PointHitRadius The pixel size of the non-displayed point that reacts to mouse events.
PointHoverBackgroundColor Point background color when hovered.
PointHoverBorderColor Point border color when hovered.
PointHoverBorderWidth Border width of point when hovered.
PointHoverRadius The radius of the point when hovered.
PointRadius The radius of the point shape. If set to 0, the point is not rendered.
PointRotation The rotation of the point in degrees.
PointStyle Style of the point. Supported values are 'circle', 'cross', 'crossRot', 'dash', 'line', 'rect', 'rectRounded', 'rectRot', 'star', and 'triangle' to style. the point.
SpanGaps If , lines will be drawn between points with no or null data. If , points with null data will create a break in the line. Can also be a number specifying the maximum gap length to span. The unit of the value depends on the scale used.
Tension Bezier curve tension of the line. Set to 0 to draw straight lines. This option is ignored if monotone cubic interpolation is used.

See Also