无法在动态 jasper 报告中设置横向方向
DynamicReport firstDynaRep = new DynamicReport();
firstDynaRep.setTemplateFileName("./landscape.jrxml");
firstDynaRep = firstReport.build();
DynamicReport不以它为模板。 所以页面的宽度并没有增加。 那么有什么办法可以增加dynamicjasper报告中页面的宽度呢? (我想要横向的报告。)
DynamicReport firstDynaRep = new DynamicReport();
firstDynaRep.setTemplateFileName("./landscape.jrxml");
firstDynaRep = firstReport.build();
DynamicReport not taking it as a template.
So the width of the page is not increased.
So is there any way to increase the width of the page in dynamicjasper report? (I want the report in landscape orientation.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
修改页面大小和方向。
或者
Modify page size and orientation.
OR
我已经很长时间没有使用 DynamicJasper 了,但我相信您应该在
DynamicReportBuilder
而不是DynamicReport
上使用setTemplateFileName()
I haven't used DynamicJasper for a long time, but I believe you should be using
setTemplateFileName()
on aDynamicReportBuilder
and not onDynamicReport
页页 = new Page();
page.setOrientationPortrait(false);
这将以横向模式显示页面
Page page = new Page();
page.setOrientationPortrait(false);
This will bring up the page in landscape mode