autoBind Boolean(default: true)

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

Example

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

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