categoryAxis.highlight.visibleBoolean(default: false)
If set to true the chart will display the category highlight. By default the category highlight is not displayed.
Example - show the category axis highlight
<div id="chart"></div>
<script>
$("#chart").kendoChart({
categoryAxis: {
categories: ["2012", "2013"],
highlight: {
visible: true
}
},
series: [
{ type: "line", data: [1, 2, 3] }
]
});
</script>