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

var range = axis.range();
var min = range.min;
var max = range.max;
In this article