navigator.dateFieldString
The field containing the point date.
It is used as a default field for the navigator axis.
The data item field value must be either:
####* Date instance
####* String parsable by new Date([field value])
####* String in ASP.NET JSON format, i.e. "/Date(1320825600000-0800)/"
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
navigator: {
dateField: "tradeDate"
},
dataSource: {
data: [
{ tradeDate: new Date("2012/01/01"), price: 10 },
{ tradeDate: new Date("2012/01/02"), price: 15 }
]
}
});
</script>
In this article