Scatter


// Creation of a polar point series
const pointSeries = chart.addPointSeries()
Point size
pointSeries.setPointSize(5)
Point shape
pointSeries.setPointShape(PointShape.Star)
Point color
pointSeries.setPointFillStyle(new SolidFill({ color: ColorRGBA(255, 0, 0) }))
For more details about style API, please see Styles, colors and fonts.
Point rotation
pointSeries.setPointRotation(45)
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