Indicates whether the navigator will call read on the data source initially. Applicable only when using a dedicated navigator data source.

    <div id="stock-chart"></div>

    $("#stock-chart").kendoStockChart({
        navigator: {
            dataSource: naviDataSource,
            autoBind: false
        }
    });


    //Call the navigator dataSource's read method
    //naviDataSource.read();
    </script>
In this article