xAxis.notes.position String

The position of the x 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 - set the x axis notes icon background

<div id="chart"></div>
<script>
  $("#chart").kendoChart({
    series: [{
      type: "scatter",
      data: [[1, 2], [2, 3]]
    }],
    xAxis: {
      notes: {
        position: "bottom",
        data: [{ value: 1.3 }]
      }
    }
  });
</script>
In this article