set clockwise order angles when using tpolarseries.addpolar

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
xavier
Newbie
Newbie
Posts: 2
Joined: Mon Jun 11, 2001 4:00 am

set clockwise order angles when using tpolarseries.addpolar

Post by xavier » Thu Sep 09, 2004 2:03 pm

Hi
I'd like to set the tpolarseris adding data clockwise.
by default when you add polar points, then angle parameter is anti-clockwise order.
How to set it clockwiseorder
i have set sams peoblem when i use the PointToAngle(x,y) method.

i use the 5.02 version with delphi 6
regards

Pep
Site Admin
Site Admin
Posts: 3273
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Thu Sep 09, 2004 4:30 pm

Hi Xavier,

to do this you can use the ClockWiseLabels property :

Code: Select all

Series1.CircleLabels := true;
Series1.ClockWiseLabels := true;

Post Reply