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