Rotation direction of Pie graph (clock- & counter-clockw

Ideas and wishes for TeeChart
Post Reply
ESRI
Newbie
Newbie
Posts: 60
Joined: Wed Mar 09, 2005 5:00 am

Rotation direction of Pie graph (clock- & counter-clockw

Post by ESRI » Fri Apr 13, 2007 5:04 am

Any possiblity of getting a direction of rotation control for Pie graphs?

Currently pie graphs rotate in a counter-clockwise direction. Microsoft Excel, however, seems to change the angle in a clockwise direction. It would be very nice if there was a control that lets a user go between clockwise and counterclockwise.


Thanks,
juan

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Fri Apr 13, 2007 7:34 am

Hi Juan,

I'm afraid this is not possible for now. I've added your request to our wish-list to be considered for inclusion in future releases.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Oct 02, 2007 7:28 am

Hi Juan,

This can be done right now using the following code :

Code: Select all

procedure TForm1.BitBtn1Click(Sender: TObject);
begin
// counter clockwise
Series1.Rotate(10);
end;

procedure TForm1.BitBtn2Click(Sender: TObject);
begin
// clockwhise direction
Series1.Rotate(-10);
end;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply