xAxis.notes.data.value Object

The value of the note.

Example - set the x axis notes color width

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