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 - set the series notes position
<div id="chart"></div>
<script>
$("#chart").kendoChart({
dataSource: {
data: [
{ value: 1, noteText: "Important" },
{ value: 2, noteText: "" },
{ value: 3, noteText: "Critical" }
]
},
series: [{
field: "value",
noteTextField: "noteText",
notes: {
position: "bottom"
}
}]
});
</script>
In this article