categoryAxis.reverse Boolean (default: false)

If set to true the category axis direction will be reversed. By default categories are listed from left to right and from bottom to top.

Example - reverse the category axis

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  categoryAxis:  {
    categories: ["2012", "2013"],
    reverse: true
  },
  series: [
    { data: [1, 2, 3] }
  ]
});
</script>
In this article