Page 1 of 1

How to unlock ChartGrid.Series

Posted: Wed Feb 11, 2009 10:29 am
by 10546084
When using TChartGrid I first assign all the multiple series generated to my ChartGrid. All still fine.
When moving a data point (dragpoint) i set ChartGrid.Series to the series of the data point that I am moving. All still fine.
When I disable the DragPoint feature and want to see all multiple series again in the ChartGrid using ChartGrid.Chart := chartplot, the previous state remain, i.e. ChartGrid.Series := Series;

Please advise.

Thank you.

Posted: Wed Feb 11, 2009 11:52 am
by narcis
Hi bamboo,

You can try doing this:

Code: Select all

   ChartGrid1.Series:=nil;
   ChartGrid1.Chart:=Chart1;