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](/6.1.2/more-guides/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](/6.1.2/features/polar/line)
User interactions
This section works the same as for Line, to avoid duplication of guides, please refer to the section under Line](/6.1.2/features/polar/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](/6.1.2/features/polar/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](/6.1.2/features/polar/line)