Skip to main content
Version: 8.3.2

Area

Polar area chartPolar area chart

// Creation of a polar area series
const areaSeries = chart.addAreaSeries()

Area fill

areaSeries.setFillStyle(new SolidFill({ color: ColorRGBA(255, 0, 0) }))

For more details about style API, please see Styles, colors and fonts.

Area stroke

areaSeries.setStorkeStyle(new SolidLine({ thickness: 1, fillStyle: new SolidFill({ color: ColorRGBA(0, 255, 0) }) }))

For more details about style API, please see Styles, colors and fonts.

Adding data

This section works the same as for Line, to avoid duplication of guides, please refer to the section under Line

User interactions

This section works the same as for Line, to avoid duplication of guides, please refer to the section under Line

Solve nearest from location

This section works the same as for Line, to avoid duplication of guides, please refer to the section under Line

Interactions with data points

This section works the same as for Line, to avoid duplication of guides, please refer to the section under Line

Auto connect ends

This section works the same as for Line, to avoid duplication of guides, please refer to the section under Line