Page 1 of 1

Exporting to PDF

Posted: Mon Aug 22, 2005 2:08 pm
by 9337348
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.

Posted: Mon Aug 22, 2005 2:45 pm
by narcis
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;