max property

dynamic max

Set max value of x axis range. When specified max.value is greater than the bound data value, setting max.fit=true will make x axis max to be fitted to the bound data max value.

Implementation

external dynamic
    /*String|num|DateTime|{
		fit?: boolean;
		value?: string | number | Date;
	}*/
    get max;
void max=(dynamic v)

Implementation

external set max(
    dynamic
        /*String|num|DateTime|{
		fit?: boolean;
		value?: string | number | Date;
	}*/
        v);