procedure TFormMain.Timer1Timer(Sender: TObject);
begin
  inherited;
  iPlot1.Channel[0].TitleText:='白石监测点';
  iPlot1.Channel[1].TitleText:='芳村监测点';
  iPlot1.Channel[0].AddYElapsedSeconds(Random(30));
  iPlot1.Channel[1].AddYElapsedSeconds(Random(30));
end;

procedure TFormMain.FormShow(Sender: TObject);
begin
  inherited;
  iPlot1.XAxis[0].Span  := 10;
  iPlot1.YAxis[0].Span:=30;
  iPlot1.XAxis[0].Title := '时间(秒)';
  iPlot1.YAxis[0].Title:='水位(米)';
end;

相关文章:

  • 2021-11-22
  • 2021-08-01
  • 2022-12-23
  • 2021-08-02
  • 2021-11-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-10
  • 2021-09-20
  • 2021-10-29
  • 2022-12-23
  • 2021-11-13
相关资源
相似解决方案