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...
[Axis Title] Set vertical position ?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi bertrod,
You need to do this manually drawing on TeeChart's canvas, for example:
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 |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
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 |
Instructions - How to post in this forum |