categoryAxis.notes.dataArray
The items of the notes.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
data: [1, 2, 3, 4, 5, 4, 3, 2],
categoryAxis: {
notes: {
data: [{
value: "Q1",
text: "First Quarter"
}, {
value: "Q3",
text: "Third Quarter"
}]
}
}
});
</script>