Hi,
Is there any way to display the report on the full width of the screen in JasperServer 5?
Best regards,
Daniel
Attachments:
I just started with Jasper 5, I noticed that too.
- Log in or register to post comments
I am not sure about this. but can you please check by changing the report layout to landscape.
- Log in or register to post comments
Can you please let me know if you get this fixed?
- Log in or register to post comments
add comment
3 Answers:
Posted on January 10, 2013 at 9:02am
I am not sure if this is a frowned upon solution, but it works for us when outputting to html. Plus it may not truly solve your issue, but it should make the fonts bigger.
At the Report level add the "net.sf.jasperreports.export.html.size.unit" Property with a value of "pt" (no quotes).
Posted on July 10, 2014 at 4:11am
You need to change the ZOOM RATIO.
Please open the DefaultJasperViewer.jsp.
And add the below line
exporter.setParameter(JRHtmlExporterParameter.ZOOM_RATIO, new Float(1.5));
Just before the line
exporter.exportReport();
Dont forget to restart the tomcat :).
Worked like a charm for me.