valueNumber

The point value.

Example

<div id="chart"></div>
<script>
$("#chart").kendoChart({
    series: [{
        type: "line",
        data: [10, 25, 35, 20, 30]
    }],
    categoryAxis: {
        categories: ["Jan", "Feb", "Mar", "Apr", "May"]
    },
    seriesClick: function(e) {
        console.log("Point value:", e.point.value);
        console.log("Point category:", e.point.category);
    }
});
</script>
In this article
value
Not finding the help you need?
Contact Support