Hi Franck,
No, you shouldn't set the same axis size, you should set the same axis scale for vertical and horizontal axis using SetMinMax method, for example.
Isometric axes
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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 Franck,
We don't have any new demo example. In your example, to get it working you should set the same axis scale doing this:
or axes scale would be automatically identic populating series like this:
We don't have any new demo example. In your example, to get it working you should set the same axis scale doing this:
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
var i: integer;
begin
for i := 0 to 100 do
Series1.AddXY(i, i*2);
Chart1.Axes.Bottom.SetMinMax(0,i);
Chart1.Axes.Left.SetMinMax(0,i);
end;
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
var i: integer;
begin
for i := 0 to 100 do
Series1.AddXY(i, i);
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 |