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="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "column",
valueAxis: {
notes: {
data: [{
value: 15,
text: "Target",
position: "left"
}]
}
},
series: [{
data: [10, 15, 8, 12]
}]
});
</script>
In this article