navigator.autoBind Boolean
(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>
$("#stock-chart").kendoStockChart({
navigator: {
dataSource: naviDataSource,
autoBind: false
}
});
//Call the navigator dataSource's read method
//naviDataSource.read();
</script>