dataItemObject

The point dataItem.

Example

<div id="chart"></div>
<script>
$("#chart").kendoChart({
    dataSource: {
        data: [
            { product: "Product A", sales: 100, profit: 20 },
            { product: "Product B", sales: 150, profit: 30 },
            { product: "Product C", sales: 80, profit: 15 }
        ]
    },
    series: [{
        type: "column",
        field: "sales",
        categoryField: "product"
    }],
    seriesClick: function(e) {
        console.log("Point dataItem:", e.point.dataItem);
        console.log("Product:", e.point.dataItem.product);
        console.log("Profit:", e.point.dataItem.profit);
    }
});
</script>
In this article
dataItem
Not finding the help you need?
Contact Support