Coloring the header and footer

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Anthony
Newbie
Newbie
Posts: 35
Joined: Wed Feb 25, 2004 5:00 am
Location: WL| Delft Hydraulics, Holland
Contact:

Coloring the header and footer

Post by Anthony » Thu Jan 13, 2005 11:45 am

Hi,

I tried to customize the color of the header and footer, but no result.

For some reason the color for the header is always *blue* and the footer always *red*.

But if I check the actual color by *tChart1.Header.Color.Name*, it shows up with *silver*. Same for the footer, also *silver*.

Of course I tried to overrule the defaut by code

tChart1.Header.Color = Color.Black;

and

tChart1.Footer.Color = Color.Black;

but as I told you, no result, Still blue header and red footer..

Strange ..

Thanks in advance.

Regards,
Antoon Koster
WL|Delft Hydraulics
Delft
Netherlands

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 Jan 13, 2005 12:50 pm

Hi Antoon,

That's because you should set the header or footer transparent property to false either using the chart editor or programmaticaly.

Code: Select all

tChart1.Header.Transparent=false;
tChart1.Footer.Transparent=false;
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

Post Reply