if button1.checked and button2.checked then
begin
if line=nil then
begin
line:=TFastlineseries.creat(self);
line.parentchart:=DBChart1;
line.datesource:=ADOQuery1;
line.XLabel.source:='date';
line.Yvaluesource:='Wxpr1008';
Line.title:='line';
line.Xvalues.datetime:=true;
line.Yvalues.datetime:=false;
line.actibe:=true;
end
else
line.active:=true
else
if not (line=nil) then
line.active:=false;
为什么我在关闭这个窗体后 再次打开运行的时候  曲线就显示不出来呢 ????
但是我发现 在 Lengend上还显示着line  为什么曲线微不显示呢   郁闷一天了