Hi,
I'm using TeeChart8.02Delphi7, and since upgrading from the "free" version built into Delphi, the color of all my line graphs, are always red.
I use the TLineSeries, and then:
Add( SomeNumber , SomeString, clBlue);
But it doesn't matter: With a bar graph the color changes to blue, but with a line graph it just stays red. Am I doing something wrong?
Like I mentioned, it worked perfectly with the built in version in Delphi 7.
Regards,
Christiaan
TeeChart 8.02 and Line Graph Colors
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Christiaan,
You may need to set this:
Or this:
You may need to set this:
Code: Select all
Series1.Color:=clBlue;
Code: Select all
Series1.ColorEachLine:=true;
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 |