series.notes.positionString
The position of the series note.
- "top" - The note is positioned on the top.
- "bottom" - The note is positioned on the bottom.
- "left" - The note is positioned on the left.
- "right" - The note is positioned on the right.
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: {
position: "top",
data: [{
value: 41
}]
}
}],
categoryAxis: {
field: "date"
}
});
</script>
In this article