yAxis.reverse Boolean (default: false)

If set to true the value axis direction will be reversed. By default values increase from left to right and from bottom to top.

Example - reverse the scatter chart y axis

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