Hi,
I'm using TeeChart and ASP.Net 2.0.
How I can export my chart to .pdf and .jpg file?
Regards.
Leszek
export to .pdf and .jpg file (ASP.Net)
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Leszek,
The easiest way is doing this:
For further information please read Tutorial 12 - Exporting and Importing Charts. You'll find the tutorials at TeeChart's program group.
The easiest way is doing this:
Code: Select all
WebChart1.Chart.Export.Image.JPEG.Save(JPGfilename);
WebChart1.Chart.Export.Image.PDF.Save(PDFfilename);
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Leszek,
The easiest way is using browser printing facilities. You can also use this:
The easiest way is using browser printing facilities. You can also use this:
Code: Select all
WebChart1.Chart.Printer.Print();
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 |