[Axis Title] Set vertical position ?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
bertrod
Advanced
Posts: 151
Joined: Wed Sep 07, 2005 4:00 am

[Axis Title] Set vertical position ?

Post by bertrod » Tue Nov 28, 2006 3:32 pm

Hello,

Is it possible to change the vertical axes' title position ? I would like to show the titles on the top of the axes and not the middle as it is now...

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

Post by Narcís » Wed Nov 29, 2006 9:55 am

Hi bertrod,

You need to do this manually drawing on TeeChart's canvas, for example:

Code: Select all

procedure TForm9.Chart1AfterDraw(Sender: TObject);
begin
  Chart1.Canvas.RotateLabel(Chart1.Left , Chart1.ChartRect.Bottom,
                            'Left Axis Title', 90);
end;

procedure TForm9.FormCreate(Sender: TObject);
begin
  Chart1.Axes.Left.LabelsSize:=50;
  Chart1.Draw;
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

bertrod
Advanced
Posts: 151
Joined: Wed Sep 07, 2005 4:00 am

Post by bertrod » Mon Dec 04, 2006 12:12 pm

Thanks for the answer. Do you think you will implement this in future releases ? I think it's a very interesting feature to be able to choose the title vertical position.

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

Post by Narcís » Mon Dec 04, 2006 2:59 pm

Hi bertrod,

I can't tell you for sure. 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

Post Reply