yAxis.notes.dataArray
The items of the notes.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
data: [1, 2, 3]
}],
yAxis: {
notes: {
data: [{
value: 1.5,
label: {
text: "Min target"
}
}, {
value: 2.5,
label: {
text: "Max target"
}
}]
}
}
});
</script>
In this article