Print multiple charts on multiple pages including preview???
Posted: Tue Feb 01, 2005 12:56 pm
Dear Support,
How can I print two Tcharts, each on a new page (Tchart1 on page 1, Tchart2 on page 2).
Is there a way to catch the print event using a handler, and placing the chart output manually on the page?
e.g. idea like this:
The result should be a way to place e.g. 4 charts on page 1, 10 charts on page 2, and so on... (including user defined graphic objects, depending on the actual page number).
Thanks in advance!
Regards
Alex
How can I print two Tcharts, each on a new page (Tchart1 on page 1, Tchart2 on page 2).
Is there a way to catch the print event using a handler, and placing the chart output manually on the page?
e.g. idea like this:
Code: Select all
select case page
case 0
tchart1.print(e)
e.graphics. ...
.....adding a lot of additional objects
e.hasmorepages=true
case1
tchart2.print(e)
e.graphics. ...
.....adding a lot of different additional objects
end select
page +=1
Thanks in advance!
Regards
Alex