如何打印TChart?
我显示了一个TChart,屏幕上有一个TButton。
点击TButton后,将显示Windows打印机对话框,并将TChart打印到所选的打印机。
如何使用Delphi 7做到这一点?
感谢。
答案 0 :(得分:4)
这很容易:
procedure TForm1.Button1Click(Sender: TObject);
begin
with TPrintDialog.Create(nil) do
try
if Execute then
Chart1.Print;
finally
Free;
end;
end;