Pb with the zoom on Win95/98/Me

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

Pb with the zoom on Win95/98/Me

Post by franckgar » Thu Apr 13, 2006 9:21 am

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Apr 13, 2006 9:34 am

Hi Franck,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

Post by franckgar » Thu Apr 13, 2006 12:06 pm

ok, that's done !

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Apr 13, 2006 1:03 pm

Hi Franck,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

Post by franckgar » Fri Apr 14, 2006 7:18 am

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

franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

Post by franckgar » Tue Apr 18, 2006 9:42 am

narcis, you can reproduce the bug ?

Franck

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Apr 18, 2006 9:55 am

Hi Franck,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

Post by franckgar » Tue Apr 18, 2006 10:53 am

yes, zoom several times (4 or 5 times perhaps) on only one point. But remember, you must do it on windows 9x/Me to reproduce the bug.
On my side it works each time.

Franck

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Apr 18, 2006 11:18 am

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

Post by franckgar » Tue Apr 18, 2006 12:22 pm

This problem never happens on Win NT/2000/XP machines, but each time on Win 9x/Me machines (independently of the graphic card).
I really need a solution for this teechart bug... unfortunately several of my customers are still using Win 9x/Me.

Franck

franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

Post by franckgar » Wed Apr 19, 2006 2:43 pm

narcis, you have no solution for my problem ?

Franck

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Apr 20, 2006 7:46 am

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

Post by franckgar » Thu Apr 20, 2006 8:22 am

great ! I wait for your reply.

franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

Post by franckgar » Thu Apr 27, 2006 2:17 pm

narcis, do you have further news for this bug ?

franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

Post by franckgar » Wed May 03, 2006 10:15 am

no more news ??

Post Reply