Rendering Position in WinUI Chart (SfPolarChart)
9 Jul 20261 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