Exporting to PDF
Exporting to PDF
Hi, Before installing your February Tee Charts update we were able to export charts to PDF. Is there a bug issue in the latest version that can be fixed so we can again export the charts to PDF? We can still export jpegs and gif's but PDF's are very important to us. Please let me know if there is a fix. Thank You, Rod.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Rod,
Yes, you can export to PDF with latest TeeChart version (v7.04), just add TeePDFCanvas unit to your project and use something like:
Yes, you can export to PDF with latest TeeChart version (v7.04), just add TeePDFCanvas unit to your project and use something like:
Code: Select all
procedure TForm1.Export1Click(Sender: TObject);
begin
if SaveDialog1.Execute then
TeeSaveToPDFFile(Chart1, SaveDialog1.FileName, 450, 200 );
end;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |