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
Coloring the header and footer
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Antoon,
That's because you should set the header or footer transparent property to false either using the chart editor or programmaticaly.
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 |
Instructions - How to post in this forum |