Polar Area Chart
Polar area charts are similar to pie charts, but each segment has the same angle - the radius of the segment differs depending on the value. This type of chart is often useful when we want to show a comparison data similar to a pie chart, but also show a scale of values for context.
Common Dataset Options¶
These options are common to all datasets.
BackgroundColor¶
The line fill color.
BorderColor¶
The line color.
BorderWidth¶
The line width (in pixels).
Clip¶
How to clip relative to chartArea. Positive value allows overflow, negative value clips that many pixels inside chartArea. 0 = clip at chartArea.
Is clip enabled? Clipping can also be configured per side: clip: {left: 5, top: false, right: -2, bottom: 0}Hidden¶
Configure the visibility of the dataset. Using hidden: true will hide the dataset from being rendered in the Chart.
HoverBackgroundColor¶
Background color when hovered.
HoverBorderColor¶
Border color when hovered.
HoverBorderWidth¶
The line width (in pixels) when hovered.
Label¶
The label for the dataset which appears in the legend and tooltips.
Parsing¶
How to parse the dataset. The parsing can be disabled by specifying parsing: false at chart options or dataset. If parsing is disabled, data must be sorted and in the formats the associated chart type and scales use internally.
Parsing with key. Parsing with x and y axis keys.Arc Dataset Options¶
BackgroundColors¶
Set backgrounds colors.
BorderAlign¶
Default 'center'
BorderDash¶
Arc border length and spacing of dashes.
BorderDashOffset¶
Arc border offset for line dashes. Default 0.0
BorderJoinStyle¶
Data¶
Set Data for arc chart.
HoverBorderDash¶
Arc border length and spacing of dashes when hovered.
HoverBorderDashOffset¶
Arc border offset for line dashes when hovered.
HoverBorderJoinStyle¶
Arc border join style when hovered.
Polar Area Dataset Options¶
Circular¶
By default the Arc is curved. If circular: false the Arc will be flat.