yAxis.notes.position String
The position of the y axis notes.
- "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 y axis notes icon background
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "scatter",
data: [[1, 2], [2, 3]]
}],
yAxis: {
notes: {
data: [{ value: 1.3 }],
position: "left"
}
}
});
</script>