Base chart class for charts that render on a cartesian plane with x and y axes. Currently only supports
primary x and y axes, even though there are methods pertaining to secondary axes.
Cartesian charts can have the following additional children:
- {0,n} GridLines, will render lines aligned with the axes below or above the data series
- {2,n} Axis, required to define the coordinate space of the cartesian plane
The instance initializer.
Parameters:
name – the GI name of the instance
left – left position (in pixels) of the chart relative to its parent container
top – top position (in pixels) of the chart relative to its parent container
width – width (in pixels) of the chart
height – height (in pixels) of the chart
Returns the array of children GridLines instances.
Returns:
gridLines
Returns the primary x axis, if any.
Returns:
primaryXAxis
Returns the primary y axis, if any.
Returns:
primaryYAxis
Returns the range for axis, delegates to getXRange() or getYRange().
Parameters:
Returns:
[min,max] or null if no range can be found
Deprecated.
Returns the release/build for the class (i.e., "2.2.00").
Returns:
Returns the range of x values in the data provider, subclasses must implement.
Parameters:
series – the series to consider
Returns:
[min,max] or null if no range can be found
Returns the range of y values in the data provider, subclasses must implement.
Parameters:
series – the series to consider
Returns:
[min,max] or null if no range can be found
Copyright © 2001-2008, TIBCO Software Inc.