range
Returns an object with the axis minimum and maximum values.
Returns
Object
the object with the min and max values.
Example - get the axis minimum and maximum values
js
var range = axis.range();
var min = range.min;
var max = range.max;
In this article