navigator.autoBindBoolean(default: true)
Indicates whether the navigator will call read on the data source initially. Applicable only when using a dedicated navigator data source.
Example
<div id="stock-chart"></div>
<script>
var navigatorDataSource = new kendo.data.DataSource({
data: [
{ date: new Date("2012/01/01"), volume: 1000 },
{ date: new Date("2012/01/02"), volume: 1500 }
]
});
$("#stock-chart").kendoStockChart({
navigator: {
dataSource: navigatorDataSource,
autoBind: false
}
});
// Manual read call when autoBind is false
navigatorDataSource.read();
</script>
pseudo
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
navigator: {
dataSource: naviDataSource,
autoBind: false
}
});
//Call the navigator dataSource's read method
//naviDataSource.read();
</script>
In this article