我在TChart里用代码添加了Series,但是添加了值之后曲线看不到,这是为什么?
我的代码如下,麻烦哪位帮帮忙!
procedure TForm1.AddBtnClick(Sender: TObject);
var
  Ser:TChartSeries;
begin
  ser:=TChartSeries.Create(nil);
  ser.SeriesColor:= ColorBox1.Color;
  chart1.AddSeries(ser);
  chart1.Series[0].Add(23);
  chart1.Series[0].Add(43);
end;
在chart里添加的点的值在右边都能看到,但就是不能显示出曲线,为什么?