EJSC.Axis.min_extreme

See Also

 

Definition

 

float min = undefined

 

Description

 

Defines the minimum 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: {

                       min_extreme: -500.00

               }

       }

);