Delphi 7:如何打印TChart



如何打印TChart?

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

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

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

谢谢。

这很简单:

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

相关内容

  • 没有找到相关文章

最新更新