Page 1 of 1

LineHeight

Posted: Tue Apr 18, 2006 5:14 pm
by 8437843
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

Posted: Wed Apr 19, 2006 8:22 am
by narcis
Hi Ted,

You can do something like this:

Code: Select all

        for (int i=0;i<Chart1->SeriesCount();i++)
        {
                Chart1->Series[i]->Pen->Width=5;
        }

Posted: Wed Apr 19, 2006 6:10 pm
by 8437843
Duh, sorry, thought I had already tried that.

Thanks