series.notesObject
The series notes configuration.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
dataSource: {
data: [
{ date: "2013/01/01", value: 40 },
{ date: "2013/01/02", value: 42 }
]
},
series: [{
field: "value",
notes: {
data: [{
value: 41,
position: "top"
}]
}
}],
categoryAxis: {
field: "date"
}
});
</script>