Pb with the zoom on Win95/98/Me
Pb with the zoom on Win95/98/Me
Hi,
I have a problem with the zoom on windows 95/98 and Me : I a strange behaviour of the graph when I zoom one point of one trace.
This picture shows the original traces : http://img135.imageshack.us/my.php?image=zoomoff9pl.jpg
This one shows the zoomed point with the problem (a vertical line not desired) : http://img86.imageshack.us/my.php?image=zoomon7ej.jpg
I send you a project you could run "as it".
I wait for your reply on the forum.
Thanks
Franck
I have a problem with the zoom on windows 95/98 and Me : I a strange behaviour of the graph when I zoom one point of one trace.
This picture shows the original traces : http://img135.imageshack.us/my.php?image=zoomoff9pl.jpg
This one shows the zoomed point with the problem (a vertical line not desired) : http://img86.imageshack.us/my.php?image=zoomon7ej.jpg
I send you a project you could run "as it".
I wait for your reply on the forum.
Thanks
Franck
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Franck,
Thanks for the project but I'm afraid I won't receive it at the address you posted.
Thanks in advance.
Thanks for the project but I'm afraid I won't receive it at the address you posted.
Thanks in advance.
Last edited by Narcís on Wed Oct 04, 2006 11:09 am, edited 1 time in total.
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 the e-mail. Can you please check it?
Thanks in advance.
I haven't received the e-mail. Can 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 |
I sent you the email successfully twice.
If you don't received it, you can recreate the project like this :
on a new application add a graph with two TLineSeries (lines and points visible) : the first red and the second blue.
Enable the zoom and put this code on the FormCreate() :
procedure TForm2.FormCreate(Sender: TObject);
var
k: integer;
x,y1,y2: double;
begin
Series1.Clear;
Series2.Clear;
Randomize;
for k := 0 to 9 do
begin
Series1.AddXY(k, 0,'',clred);
Series2.AddXY(k, 0,'',clLime);
end;
for k := 10 to 20 do
begin
x := k;
y1 := random(100);
Series1.AddXY(x, 100 + y1/100,'',clred);
y2 := random(100);
Series2.AddXY(x, 1 + y2/100,'',clLime);
end;
end;
Now you can reproduce the problem at run-time if you zoom several times on only one point.
Franck
If you don't received it, you can recreate the project like this :
on a new application add a graph with two TLineSeries (lines and points visible) : the first red and the second blue.
Enable the zoom and put this code on the FormCreate() :
procedure TForm2.FormCreate(Sender: TObject);
var
k: integer;
x,y1,y2: double;
begin
Series1.Clear;
Series2.Clear;
Randomize;
for k := 0 to 9 do
begin
Series1.AddXY(k, 0,'',clred);
Series2.AddXY(k, 0,'',clLime);
end;
for k := 10 to 20 do
begin
x := k;
y1 := random(100);
Series1.AddXY(x, 100 + y1/100,'',clred);
y2 := random(100);
Series2.AddXY(x, 1 + y2/100,'',clLime);
end;
end;
Now you can reproduce the problem at run-time if you zoom several times on only one point.
Franck
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Franck,
No, I couldn't reproduce it, should I try to zoom any specific point?
BTW: I didn't receive your e-mail.
No, I couldn't reproduce it, should I try to zoom any specific point?
BTW: I didn't receive your e-mail.
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 can not reproduce it here as we don't have any win 98/me machine currently available. Have you tried if the problem happens in a Win 2000/XP/2003 machine?
You could also try to increase the graphic card colour settings in those machines.
We can not reproduce it here as we don't have any win 98/me machine currently available. Have you tried if the problem happens in a Win 2000/XP/2003 machine?
You could also try to increase the graphic card colour settings in those machines.
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 could reproduce the problem here in a Win 98 Virtual PC installation. We will investigage if there's anything to be done. I'll get back to you when I have furthre news.
I could reproduce the problem here in a Win 98 Virtual PC installation. We will investigage if there's anything to be done. I'll get back to you when I have furthre news.
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 |