CBuilder
TChart v7
Trying to access (change) TCustomSeries LineHeight. Several series in a chart dynamically created with the Name property == NULL. Help would be appreciated.
Regards,
Ted
LineHeight
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Ted,
You can do something like this:
You can do something like this:
Code: Select all
for (int i=0;i<Chart1->SeriesCount();i++)
{
Chart1->Series[i]->Pen->Width=5;
}
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 |