series.typeString(default: "line")
The type of the series. Available types:
- area
- column (synonym: bar)
- line
- pie
- bullet
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
series: [{
type: "area",
data: [10, 15, 8, 12]
}]
});
</script>
In this article