Hi
I tried to define the Axis title in the IDE Editor and/or programmatically.
Both are unable to write the Axis Title.
Please help.
Is this a bug?
Thanks
Walter
Axis Title of DEPTH RIGHT not displayed
-
- Newbie
- Posts: 37
- Joined: Mon Jul 13, 2015 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Axis Title of DEPTH RIGHT not displayed
Hi Walter,
Code snippet below works fine for me here. Can you please check it works at your end?
Thanks in advance.
Code snippet below works fine for me here. Can you please check it works at your end?
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
begin
Series1.FillSampleValues;
Series1.VertAxis:=aBothVertAxis;
Series1.HorizAxis:=aBothHorizAxis;
Chart1.Axes.Bottom.Title.Text:='bottom axis title';
Chart1.Axes.Top.Title.Text:='top axis title';
Chart1.Axes.Left.Title.Text:='left axis title';
Chart1.Axes.Right.Title.Text:='right axis title';
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 |
-
- Newbie
- Posts: 37
- Joined: Mon Jul 13, 2015 12:00 am
Re: Axis Title of DEPTH RIGHT not displayed
Please try a 3D chart with the DEPTH Axis right. There the Axis Ti is missing.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Axis Title of DEPTH RIGHT not displayed
Hi Walter,
Depth axis is not visible by default. You need to enable it:
The title is rendered at the wrong position though so I have added it to the bug list: http://bugs.teechart.net/show_bug.cgi?id=1482
Depth axis is not visible by default. You need to enable it:
Code: Select all
Series1.FillSampleValues;
Series1.VertAxis:=aBothVertAxis;
Series1.HorizAxis:=aBothHorizAxis;
Chart1.Axes.Bottom.Title.Text:='bottom axis title';
Chart1.Axes.Top.Title.Text:='top axis title';
Chart1.Axes.Left.Title.Text:='left axis title';
Chart1.Axes.Right.Title.Text:='right axis title';
Chart1.Axes.Depth.Title.Text:='depth axis title';
Chart1.Axes.Depth.Visible:=True;
- Attachments
-
- depthaxis.png (53.6 KiB) Viewed 15495 times
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 |