categoryString|Date|Number

The point category value. Available only for categorical points(Bar, Line, etc.).

Example

<div id="chart"></div>
<script>
$("#chart").kendoChart({
    series: [{
        type: "column",
        data: [10, 20, 30]
    }],
    categoryAxis: {
        categories: ["Q1", "Q2", "Q3"]
    },
    seriesClick: function(e) {
        console.log("Point category:", e.point.category);
    }
});
</script>
In this article
category
Not finding the help you need?
Contact Support