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