Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
15
StartAngleOffset of CategoryAngleAxis
posted

I'm  a developer of AspenTech. I have some questions.

I want put the first line at 30°. And all lines will be rotated by 30°.

It’s like this:

code: 

CategoryAngleAxis caa = RadialChart.Axes[0] as CategoryAngleAxis;

caa.LabelSettings.TextWrapping = TextWrapping.Wrap;
caa.LabelSettings.Location = AxisLabelsLocation.InsideRight;
caa.StartAngleOffset = 150;

However, the offset of first line is confusing when the total number of lines is 2,3,4......

They are like this:

So, what should I do? And what's the StartAngleOffset?