data Array

The data for the default sparkline series.

Will be discarded if series are supplied.

Example

$("#sparkline").kendoSparkline({
    data: [1, 2, 3, 5]
});

// Same as:
$("#sparkline").kendoSparkline([1, 2, 3, 5]);
In this article