Band Series can be created using the FastBandRenderableSeries type.
Examples for the Band Series can be found in the SciChart Android Examples Suite:
Band Series Features
High-Low Fill or Band Series are provided by the FastBandRenderableSeries type. This accepts data in a triplet form (X, Y1, Y2) and renders two lines with a polygon, which changes color depending on whether Y1>Y2 or vice versa.
The FastBandRenderableSeries class allows to specify Fill, FillY1 brushes and Stroke, StrokeY1 pens. Please refer to the articles under the Styling and Theming section to learn more about Brushes and Pens used in SciChart.
Digital (Step) Band Series
Also, FastBandRenderableSeries can be configured to draw a Digital (Step) Band Series. For this, call the setIsDigitalLine() method, passing in True.
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 Band Series
To create a Band Series, use the following code:
The same can be achieved using Chart Builders:
Adding PointMarkers onto a Band Series
Every pair of (X, Y) and (X, Y1) data points of a Band Series can be marked with a PointMarker. Please refer to the PointMarkers API article for more info.
To add Point Markers to a Band Series, use the following code: