Reputation: 1
I am using dynamic report to generate report.
I have as much as 15 columns to be displayed in the report.
Since the dynamic report is by default displaying A4 size page,the contents are too cumbersome to read.
Can any one suggest which is the best way to increase the page width?
Upvotes: 0
Views: 1800
Reputation: 6268
You can use setPageFormat(width, height, orientation);
example : report.(200, 230, PageOrientation.PORTRAIT)
.
Upvotes: 1