Home Forums Chart Support Get Max y Value Reply To: Get Max y Value

#15634

@nikunj,

You can use get() to fetch the minimum and maximum values of the axisY as shown in the code snippet below –

var max = chart.axisY[0].get("maximum");
document.getElementById("displayMaximum").innerHTML = max;
var min = chart.axisY[0].get("minimum");
document.getElementById("displayMinimum").innerHTML = min;

Also, please take a look at this JSFiddle for complete working code.

Display maximum and minimum value of axisY

___________
Indranil Deo
Team CanvasJS