Search
TowerRenderer.setRightSeries Method
See Also
 






Sets the right-side Series drawn by this TowerRenderer.

Namespace: com.mindfusion.charting
File: com.mindfusion.charting

 Syntax

Java  Copy Code

public void setRightSeries (
    Series value
)

 Parameters

value

A Series instance.

 Remarks

This property must be set to a three-dimensional series. The first dimension specifies event order or timing and is used to sort or position segments. Second dimension specifies duration and is rendered as segment length along the main axis. Third dimension specifies a value rendered as segment width along the cross axis. You could use the stock EventSeries class as data container, or implement the Series interface to provide data from your own data structures.

 See Also