xAxis.startAngleNumber
(default: 0)
The angle (degrees) where the 0 value is placed. Applicable to polar series.
Angles increase counterclockwise and zero is to the right. Negative values are acceptable.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [
{ type: "polarArea", data: [1, 2, 3, 4] }
],
xAxis: {
startAngle: 90
}
});
</script>
In this article