xAxis.notes.dataArray
The items of the notes.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
xAxis: {
notes: {
data: [
{ value: 1, label: { text: "First" } },
{ value: 3, label: { text: "Third" } }
]
}
},
series: [
{ type: "line", data: [1, 2, 3, 4] }
]
});
</script>
In this article