Hi all,
I have a chart wcich spans several pages. Now I want to print this chart, and put each chart-page on a separate paper-page (if you catch my drift ). Any ideas on how I could accomplish this? All I can find is how to put several charts on one page
Print several pages
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Bala,
Yes, you can do this:
Yes, you can do this:
Code: Select all
for (int i = 1; i <= tChart1.Page.Count; i++)
{
tChart1.Page.Current = i;
tChart1.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 |
Hi Narcís,
thanks for your answer I just have one other question:
If I want to save my chart-pages in a PDF-document, and I use the method described by you, I end up with as much PDF-documents as there are pages in my chart.
generated a separate print-job for each page. Do you know how I can make sure that all my pages end up in the same print-job (and also in the same PDF-document)?
thanks for your answer I just have one other question:
If I want to save my chart-pages in a PDF-document, and I use the method described by you, I end up with as much PDF-documents as there are pages in my chart.
Code: Select all
for (int i = 1; i <= tChart1.Page.Count; i++)
{
tChart1.Page.Current = i;
tChart1.Printer.Print();
}
generated a separate print-job for each page. Do you know how I can make sure that all my pages end up in the same print-job (and also in the same PDF-document)?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Bala,
I'm afraid this is not possible for now. This is already listed on our wish-list to be considered for inclusion in future releases.
I'm afraid this is not possible for now. This is already listed on our wish-list to be considered for inclusion in future releases.
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 |