visualkendo.drawing.Element
The Kendo Drawing element used to draw the point.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "column",
data: [10, 20, 30, 25]
}],
categoryAxis: {
categories: ["Q1", "Q2", "Q3", "Q4"]
},
seriesClick: function(e) {
console.log("Point visual element:", e.point.visual);
// Access the drawing element properties
if (e.point.visual) {
console.log("Visual type:", e.point.visual.nodeType);
}
}
});
</script>
In this article