valueAxis.notes.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: {
            position: "top",
            data: [{
                value: 15,
                text: "Peak"
            }]
        }
    },
    series: [{
        data: [10, 15, 8, 12]
    }]
});
</script>
In this article
valueAxis.notes.position
Not finding the help you need?
Contact Support