EJSC.Axis.max_extreme
See Also
Definition
float max_extreme = undefined
Description
Defines the maximum value of the the axis. This will only affect the axis when set during chart creation and may be used to extend or truncate the value range displayed. To retrieve and set this value after the chart has been created, see EJSC.Axis.getExtremes and EJSC.Axis.setExtremes
Example
>> Force the axis range to extend beyond the data it contains
var chart = new EJSC.Chart( "chart", { axis_bottom: { max_extreme: 500.00 } } );
|