Page 1 of 1

Problems with IE7

Posted: Fri Jul 06, 2007 8:31 pm
by 9523555
Hi,

I implement TeeChart version 6, and also try the new version 7.0.1.4, in an ASP page but when I try it in IE7 on Windows XP in some PC it doesn't work propoly, the grafic appears but the data isn't right.

In oders computers with Windows 2000 and IE6 and even in oder Windows XP with IE7 it works fine. I don't know were the problem could be. There are any knowing problem that could happen only in some cases? Or some configurations should be set up before?

Tks

Posted: Mon Jul 09, 2007 8:47 am
by Pep
Hi Nova,

most likely the problem could be related with the permissions of the folder where you have the asp files. Are you able to run asp files (which do not contain Charts) placed on the same folder ?

Posted: Tue Jul 10, 2007 1:12 pm
by 9523555
Hi Pep,

Yeah, all other pages of my website works fine, all they with asp codes.
The problems seems to be with some machines, like I said before, in some computers all pages works.

And another thing that I notice is the grafic don't show the points load from my SQL data base, other points that still depend of my data base but are constant are displayed.

There are any configuration that I have to set up on the client PC to all works?

Tks

Posted: Tue Jul 10, 2007 2:20 pm
by 9523555
I found the problem. It's the format of date in the computer is not in same language of Internet Explore. I just don't know how to solve it, yet.

I have another problem only in TeeChart v7. How to set up the color of the line, because when I use:

- TChart1.Series(0).AddXY DateValue("1/1/1999") + TimeValue("11:59:00"), 45, "", RGB(255,0,0)

or

- TChart1.Series(2).asLine.LinePen.Color = vbBlue

They only set the points color not line color. And works in v6.

tks

Posted: Wed Jul 11, 2007 8:56 am
by yeray
Hi Nova,

We are happy to see that you've found the first problem.

Your second problem appears because you add your values assigning a color to each point so the series is set to ColorEachPoint=true. And then, assigning a color to your series doesn't affect to the points.

Otherwise you should assign the color clTeeColor and then your series response will be as you wish, we think.