Exporting to PDF

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Rod
Newbie
Newbie
Posts: 5
Joined: Fri May 07, 2004 4:00 am
Contact:

Exporting to PDF

Post by Rod » Mon Aug 22, 2005 2:08 pm

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.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Mon Aug 22, 2005 2:45 pm

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:

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply