Rendering Position in WinUI Chart (SfPolarChart)

18 Nov 20181 minute to read

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

<chart:SfPolarChart StartAngle="Rotate0">

<!-- Configure additional chart elements -->
</chart:SfPolarChart>
SfPolarChart chart = new SfPolarChart();
chart.StartAngle = ChartPolarAngle.Rotate0;

// Configure additional chart elements

Rendering position for polar series in WinUI chart