Scatter Series can be created using the XyScatterRenderableSeries type.
Examples for the Scatter Series can be found in the SciChart Android Examples Suite:
Scatter Series Features
The Scatter Series requires a shape to be specified for Point Markers. SciChart provides several shapes out of the box, also it is possible to define custom shapes. Please refer to the PointMarkers API article to learn more. The PaletteProvider API allows to override colors for Point Markers, up to coloring every one individually.
Note:
In multi axis scenarios, a series has to be assigned to particular X and Y axes. This can be done passing the axes IDs to the setXAxisId(), setYAxisId() methods of the series.
Create a Scatter Series
To create the Scatter Series, use the following code:
The same can be achieved using Chart Builders:
Color Some Point Markers Differently
The PaletteProvider API allows to fill certain PointMarkers with a different color:
To do this, implement the IPointMarkerPaletteProvider interface and assign an instance of that type to XyScatterRenderableSeries via the setPaletteProvider() method. Please refer to the PaletteProvider API article for more info.