autoBind Boolean(default: true)

Indicates whether the chart will call read on the data source initially.

Example

Open In Dojo
$("#sparkline").kendoSparkline({
    dataSource: chartDataSource,
    autoBind: false
});

// ...
chartDataSource.read();
In this article