Stacked Mountain series can be created by using StackedMountainRenderableSeries and VerticallyStackedMountainCollection classes. StackedMountainRenderableSeries shares many properties with the FastMountainRenderableSeries class, with the added feature that mountains automatically stack by VerticallyStackedMountainCollection.
Examples for the Stacked Mountain Series can be found in the SciChart Android Examples Suite:
Create a Vertically Stacked Mountain Series
To create a Vertically Stacked Mountain Series, use the following code:
VerticallyStackedMountainsCollection
VerticallyStackedMountainCollection is a special renderable series which allows to stack StackedMountainRenderableSeries vertically. Basically it's a collection and the order of items in this collection determines how series should be stacked and drawn ( the first item will be drawn as regular mountain series and the rest will be stacked on top of each other). You can create several instances of VerticallyStackedMountainCollection class and add them as renderable series into chart if you have several instances of StackedMountainRenderableSeries class which should be stacked independently.