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.
TRoseSeries directions
-
- Newbie
- Posts: 7
- Joined: Mon Jul 29, 2013 12:00 am
Re: TRoseSeries directions
...As you can see from the image below the 0 degree line is pointing east.
Regards,
Sean.
Regards,
Sean.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: TRoseSeries directions
Hi Sean,
Yes, this is possible using TCircledSeries' (ancestor series) RotationAngle property:
Yes, this is possible using TCircledSeries' (ancestor series) RotationAngle property:
Code: Select all
Series1.RotationAngle:=90;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 7
- Joined: Mon Jul 29, 2013 12:00 am
Re: TRoseSeries directions
Thanks!