categoryAxis Array|Object

The category axis configuration options.

Example - configure the category axis

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