Rendering Position in WinUI Chart (SfPolarChart)

1 Jul 20211 minute to read

By using the StartAngle property of polar chart, you can modify the rendering position of the series on four degree values: 0, 90, 180, and 270. The default value of StartAngle property is Rotate270.

<chart:SfPolarChart StartAngle="Rotate0">
...
</chart:SfPolarChart>
SfPolarChart chart = new SfPolarChart();
chart.StartAngle = ChartPolarAngle.Rotate0;
...

Rendering position for polar series in WinUI chart