seriesDefaults.lineObject
The line configuration options. The default options for all line series. For more details see the series options.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "line",
seriesDefaults: {
line: {
color: "red",
width: 3,
style: "smooth"
}
},
series: [{
data: [10, 15, 8, 12]
}]
});
</script>
In this article