yAxis.min Object

The minimum value of the axis.

Example - set the scatter chart y axis minimum

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