Delphi 7:如何打印TChart?

时间:2011-12-06 14:33:05

标签: delphi printing teechart

如何打印TChart?

我显示了一个TChart,屏幕上有一个TButton。

点击TButton后,将显示Windows打印机对话框,并将TChart打印到所选的打印机。

如何使用Delphi 7做到这一点?

感谢。

1 个答案:

答案 0 :(得分:4)

这很容易:

procedure TForm1.Button1Click(Sender: TObject);
begin
  with TPrintDialog.Create(nil) do
    try
      if Execute then
        Chart1.Print;
    finally
      Free;
    end;
end;