Page 1 of 1

TRoseSeries directions

Posted: Mon Sep 09, 2013 2:12 pm
by 16566643
Is there a way for the TRoseSeries to display the directions with 0 degrees pointing north and the angles incrementing clockwise around the rose?

At present I can only get 0 degree to be facing east or at what should be the 90 degree mark!

It seams really strange that the angles are set up the wrong way around, is this by design?

Regards,
Sean.

Re: TRoseSeries directions

Posted: Mon Sep 09, 2013 2:18 pm
by 16566643
...As you can see from the image below the 0 degree line is pointing east.

Image

Regards,
Sean.

Re: TRoseSeries directions

Posted: Tue Sep 10, 2013 9:58 am
by narcis
Hi Sean,

Yes, this is possible using TCircledSeries' (ancestor series) RotationAngle property:

Code: Select all

  Series1.RotationAngle:=90;

Re: TRoseSeries directions

Posted: Tue Sep 10, 2013 10:16 am
by 16566643
Thanks!