The data item field which contains the category name. Requires the dataSource option to be set.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    dataSource: {
        data: [{
            date: new Date("2016/01/01"),
            open: 41.62,
            high: 41.69,
            low: 39.81,
            close: 40.12,
            volume: 2632000
        }]
    },
    navigator: {
        categoryAxis: {
            field: "date"
        }
    }
});
</script>
In this article
navigator.categoryAxis.field
Not finding the help you need?
Contact Support