Group: Forum Members
Last Active: 11 Years Ago
Posts: 29,
Visits: 1
|
How do I change the rotation of numbers on a Nevron polar chart? All the Nevron examples for polar charts show the numbers around the circle in anti-clockwise rotation. I would like to change the numbers to clockwise rotation, like the numbers on a clock.
|
Group: Forum Members
Last Active: 8 Years Ago
Posts: 61,
Visits: 35
|
Hi,
I never used polar chart, but if there are not any method to change the order of the number than could't you just push the values in the other way around? I mean instead of 1-->12(anticlockwise) to 12-->1 (clockwise). I do not know if that would work or not, it is just and idea.
Regards Daniel
|
Group: Forum Members
Last Active: Last Week
Posts: 3,054,
Visits: 4,009
|
Hi Luis, Hi Daniel, The easiest way to achieve this is to invert the angular axis: NAngularScaleConfigurator angularScale = (NAngularScaleConfigurator)chart.Axis(StandardAxis.PolarAngle).ScaleConfigurator; angularScale.Invert = true; Let us know if you meet any problems.
Best Regards, Nevron Support Team
|
Group: Forum Members
Last Active: 11 Years Ago
Posts: 29,
Visits: 1
|
It does work !!!! Thanks
|