categoryAxis.notes.dataArray
The items of the notes.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
categoryAxis: {
categories: ["Q1", "Q2", "Q3", "Q4"],
notes: {
data: [
{ value: "Q1", text: "First Quarter" },
{ value: "Q3", text: "Third Quarter" }
]
}
},
series: [
{ data: [1, 2, 3, 4] }
]
});
</script>
In this article