yAxis.max Object

The maximum value of the axis.

Example - set the scatter chart y axis maximum

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [{
    type: "scatter",
    data: [[1, 1],[2, 2]]
  }],
  yAxis: {
    max: 5
  }
});
</script>
In this article