valueRange

Returns an object with the minimum and maximum point value associated with the axis.

Returns Object

The value corresponding to the point.

Example - get axis value range

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