valueAxis.max Number (default: 1)

The maximum value of the axis.

Example - set the value axis maximum

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