Page 1 of 1

[Axis Title] Set vertical position ?

Posted: Tue Nov 28, 2006 3:32 pm
by 9343260
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...

Posted: Wed Nov 29, 2006 9:55 am
by narcis
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;

Posted: Mon Dec 04, 2006 12:12 pm
by 9343260
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.

Posted: Mon Dec 04, 2006 2:59 pm
by narcis
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.