Kendo.Mvc.UI.Fluent.ChartPolarAxisBuilder
Defines the fluent interface for configuring polar axis.
Methods
StartAngle(System.Double)
The angle (degrees) where the 0 value is placed. It defaults to 0.
Parameters
startAngle System.Double
Angles increase counterclockwise and 0 is to the right. Negative values are acceptable.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("chart")
.XAxis(axis => axis
.Polar()
.StartAngle(-90)
)
)