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.
Search found 2 matches
- Mon Jun 07, 2004 3:45 pm
- Forum: VCL
- Topic: TeeChart Bug
- Replies: 2
- Views: 6198
- Mon Jun 07, 2004 6:38 am
- Forum: VCL
- Topic: TeeChart Bug
- Replies: 2
- Views: 6198
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...