xAxis.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 x axis

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