Page 1 of 1

Chart->TopAxis -- Unable to Display

Posted: Sat Apr 24, 2004 5:35 am
by 9232129
I am using the surface chart and am not able to display the topaxis
title.

I am able to get leftaxis, bottomaxis, and depthaxis, but not the topaxis.
I want to use this to label the graph. Thought I should probably use the
title function for this, how do I active topaxis or get it to display the
text I assign it????

Thanks.

Posted: Sun Apr 25, 2004 9:38 pm
by Pep
Hi,

you can do something like :

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
begin
Series1.FillSampleValues(10);
Series2.FillSampleValues(10);
Series2.HorizAxis := aTopAxis;
Chart1.Axes.Top.Title.Caption := 'Top Axis';
end;