navigator.categoryAxis.fieldString
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>