categoryAxis.background String

The background color of the axis.

Example - set the category axis crossing values

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