xAxis.notes.visual Function
A function that can be used to create a custom visual for the notes. The available argument fields are:
- rect - the
kendo.geometry.Rect
that defines the note target rect. - sender - the chart instance (may be undefined).
- options - the note options.
- createVisual - a function that can be used to get the default visual.
- value - the note value.
Example - use custom visual for the notes
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "scatter",
data: [[1, 2], [2, 3]]
}],
xAxis: {
notes: {
data: [{
value: 1.3
}],
visual: function (e) {
var targetPoint = { x: e.rect.center().x, y: e.rect.origin.y };
var line = new kendo.drawing.Path()
.moveTo(targetPoint.x, targetPoint.y)
.lineTo(targetPoint.x, targetPoint.y - 10);
var circle = new kendo.drawing.Circle(new kendo.geometry.Circle([targetPoint.x, targetPoint.y - 30], 20), {
fill: {
color: "red"
}
});
return new kendo.drawing.Group({
zIndex: 1
}).append(line, circle);
}
}
}
});
</script>