Search found 2 matches

by dmitri
Mon Jun 07, 2004 3:45 pm
Forum: VCL
Topic: TeeChart Bug
Replies: 2
Views: 6169

TeeChart Bug

I can not use Chart1.FreeAllSeries.

Series1 and Series2 are global variables in my program and there can be more than one dialog with charts displaying those series (but one dialog at a time).

So I have to destroy those series during program termination.
by dmitri
Mon Jun 07, 2004 6:38 am
Forum: VCL
Topic: TeeChart Bug
Replies: 2
Views: 6169

TeeChart Bug

TeeChart 7.0 Assume Series1 and Series2 programmatically created and added to the Chart component. Then code: Chart.RemoveAllSeries; Series1.Free; Series2.Free; Above code can cause exception error. Series1.ParentChart := nil; Series2.ParentChart := nil; Series1.Free; Series2.Free; Above code will w...