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
    }
});

// ...
naviDataSource.read();
</script>
In this article