categoryAxis.highlightObject
The highlight configuration options for the category axis.
Example - set the category axis highlight options
<div id="chart"></div>
<script>
$("#chart").kendoChart({
categoryAxis: {
categories: ["2012", "2013"],
highlight: {
visible: true,
color: "#ff0000",
opacity: 0.2
}
},
series: [
{ data: [1, 2, 3] }
]
});
</script>