categoryAxis.notes.data.valueObject
The value of the note.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
data: [1, 2, 3, 4, 5, 4, 3, 2],
categoryAxis: {
notes: {
data: [{
value: "Q2",
text: "Second Quarter Note"
}]
}
}
});
</script>
In this article