Point-Line
// Creation of a 3D point line series
const pointLineSeries = chart.addPointLineSeries()

3D point line series is almost exactly same feature as 3D line series. For points specific configurations and guides, keep reading, otherwise please refer to 3D Line](/6.1.2/features/d3/line).
Point color
pointLineSeries.setPointStyle((points) => points.setFillStyle(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 shape
You can select between 'cube' and 'sphere' shapes.
pointLineSeries.setPointStyle((points) => points.setShape('cube'))
Point size
pointLineSeries.setPointStyle((points) => points.setSize(10))
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/d3/line)