valueAxis.notes.data.positionString
The position of the value axis 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="chart"></div>
<script>
$("#chart").kendoChart({
valueAxis: [{
notes: {
data: [{
value: 3,
text: "Right positioned",
position: "right"
}]
}
}],
series: [
{ data: [1, 2, 3, 4, 5] }
]
});
</script>
In this article