Isometric axes
Isometric axes
Hi,
I'm using the function MakeIsoAxis() to make axes isometric (I've found it on the Teechart example : "Isometric Axis").
But when I measure with a ruler a same range on x-axis and y-axis, I find a difference of almost 1 centimeter. This problem is reproductible with the TeeChart example "Isometric Axis" : measure the range [0-50] on the x-axis and then on the y-axis .... you will not find the same size.
This is a big problem for my users because they expect a real isometric axes which is not the case with your function.
So, do you have a better function to make isometric axes ?
thanks in advance
Francl
I'm using the function MakeIsoAxis() to make axes isometric (I've found it on the Teechart example : "Isometric Axis").
But when I measure with a ruler a same range on x-axis and y-axis, I find a difference of almost 1 centimeter. This problem is reproductible with the TeeChart example "Isometric Axis" : measure the range [0-50] on the x-axis and then on the y-axis .... you will not find the same size.
This is a big problem for my users because they expect a real isometric axes which is not the case with your function.
So, do you have a better function to make isometric axes ?
thanks in advance
Francl
Hi Francl,
here works fine (the distance are the same) with a 17" screen with 1280 by 1024 pixels.
Could you please tell me how can I reproduce the problem ?
Does this happens on some screens ?
Which screen resolution are you using ?
here works fine (the distance are the same) with a 17" screen with 1280 by 1024 pixels.
Could you please tell me how can I reproduce the problem ?
Does this happens on some screens ?
Which screen resolution are you using ?
Pep Jorge
http://support.steema.com
http://support.steema.com
I reprocuce the problem with your demo program Tee7New.exe (feature Isometric axis).
When I maximized the program and then click on "Make axis isometric" I find 62mm for xrange [0, 50] and 66mm for yrange [0, 50].
I'm using TeeChart v7.05 on Windows XP SP2, 17" LCD screen, resolution 1280 x 1024 pixels.
I find 68mm for xrange [0, 50] and 70mm for yrange [0, 50] on a 15" CRT screen, Windows 98, 1152*864.
Any idea ?
Franck
When I maximized the program and then click on "Make axis isometric" I find 62mm for xrange [0, 50] and 66mm for yrange [0, 50].
I'm using TeeChart v7.05 on Windows XP SP2, 17" LCD screen, resolution 1280 x 1024 pixels.
I find 68mm for xrange [0, 50] and 70mm for yrange [0, 50] on a 15" CRT screen, Windows 98, 1152*864.
Any idea ?
Franck
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Franck,
Could you please try this using the latest maintenance release available at the client area, which is v7.07 and v7.08 for BDS 2006?
Could you please try this using the latest maintenance release available at the client area, which is v7.07 and v7.08 for BDS 2006?
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 |
Why should I install the last maintenance release ? The problem is in the function MakeIsometric() that you delivered and not in the graph. Moreover I'm in a test phase of my software so I can not install a newer TeeChart version on my computer now.
As I told you, you can reproduce the problem with your demo program Tee7New.exe (feature Isometric axis) delivered with TeeChart v7.05.
thanks
Franck
As I told you, you can reproduce the problem with your demo program Tee7New.exe (feature Isometric axis) delivered with TeeChart v7.05.
thanks
Franck
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Franck,
It would be interesting that you could test this with latest TeeChart maintenance release because we can not reproduce this issue here using it. I'm using a 19" screen with a resolution of 1280x1024. Isometric Axis demo maximized and default size has the same distance.
It would be interesting that you could test this with latest TeeChart maintenance release because we can not reproduce this issue here using it. I'm using a 19" screen with a resolution of 1280x1024. Isometric Axis demo maximized and default size has the same distance.
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,
I haven't received your e-mail. Could you please check it?
Thanks in advance.
I haven't received your e-mail. Could you please check it?
Thanks in advance.
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,
Yes, I received your e-mail. We are reviewing the issue and will get back to you ASAP.
Yes, I received your e-mail. We are reviewing the issue and will get back to you ASAP.
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,
Thanks for the example.
As quoted in the features demo:
Thanks for the example.
As quoted in the features demo:
This means that axis scales must be the same. In your example this is not the case, for example, it would work fine if you populated series like this:That is, for same number of pixels, same scales according to your screen size, so grid lines form perfect "squares" instead of rectangle.
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi franckgar,
I meant that vertical and horizontal axes need to have the very same scale as in the example at the features demo.
I meant that vertical and horizontal axes need to have the very same scale as in the example at the features demo.
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 |
so if I understand I must fix the same size (i.e. same number of pixels) for bottomaxis and leftaxis for displaying my trace in isometric mode .... ok, this could be a solution but nevertheless this is not a very good way for my application.
Does it exist another method ? or did you include this functionnality in the next TeeChart release ?
Franck
Does it exist another method ? or did you include this functionnality in the next TeeChart release ?
Franck