series.startAngleNumber
(default: 90)
The start angle of the first segment.
Available for pie series.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "pie",
series: [{
data: [10, 15, 8, 12],
startAngle: 180
}]
});
</script>
In this article