navigator.categoryAxis.notesObject
The category axis notes configuration.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
navigator: {
categoryAxis: {
notes: {
position: "top",
icon: {
background: "red",
size: 10
},
label: {
text: "Important Date"
},
data: [{
value: new Date("2012/01/15"),
text: "Event"
}]
}
}
},
dataSource: {
data: [
{ date: new Date("2012/01/01"), value: 1 },
{ date: new Date("2012/01/15"), value: 2 },
{ date: new Date("2012/02/01"), value: 3 }
]
},
dateField: "date",
valueField: "value"
});
</script>