categoryAxis.categories Array
The category names. The chart will create a category for every item of the array.
Example - set the categories
<div id="chart"></div>
<script>
$("#chart").kendoChart({
categoryAxis: {
categories: [ "2012", "2013"]
},
series: [
{ data: [1, 2, 3] }
]
});
</script>