radar

Configuration Structure

radar: {
size: number,
offsetX: number,
offsetY: number,
polygons: { ... },
strokeColors: string | string[],
strokeWidth: string | string[],
connectorColors: string | string[],
fill: { ... },
colors: string[],
}

plotOptions

size

A custom size for the inner radar. The default size calculation will be overrided with this

offsetX

Sets the left offset of the radar

offsetY

Sets the top offset of the radar

strokeColors

radar.polygons.strokeColors

The line/border color of the spokes of the chart excluding the connector lines. If you want to pass more than 1 color, you can pass an array instead of a String.
strokeColors: '#e8e8e8' and strokeColors: ['#e8e8e8', '#f1f1f1'] both are valid.

strokeWidth

radar.polygons.strokeWidth

Border width of the spokes of radar chart.

connectorColors

radar.polygons.connectorColors

The line color of the connector lines of the polygons. If you want to pass more than 1 color, you can pass an array instead of a String.
connectorColors: '#e8e8e8' and connectorColors: ['#e8e8e8', '#f1f1f1'] both are valid.

colors

radar.polygons.fill.colors

The polygons can be filled with a custom color. If you provide 2 colors, the colors will be repeated for the rest of the polygons.