Search
TowerRenderer Class
Remarks See Also
 






Implements a SeriesRenderer used to draw tower charts, rendering series side by side to allow comparing data sequence and sizes.

Namespace: MindFusion.Charting
File: TowerRenderer.js

 Syntax

JavaScript  Copy Code

// class
TowerRenderer.prototype = {}

 Remarks

Assign the series to compare to leftSeries and rightSeries properties of the renderer. The chart segments are arranged according to the value of layout property, and their shape is drawn as specified by segmentShape.

This renderer requires 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.

 Inheritance Hierarchy

MindFusion.Charting.TowerRenderer

 See Also