如何修改标题模板jrxml
我使用 ireport 4.0.2 创建了一个模板文件,并在代码中设置了模板文件:
drb.setTemplateFile("report1.jrxml");
但是,执行此操作时我无法设置模板的标题:
drb.setTitle("Comptes du client") //defines the title of the report
.setSubtitle("Détails Compte ")
第二个问题是,当我添加 GlobalFooterVariable(columnSolde, DJCalculation.SUM) 时,它可以工作,但我有一个标签“GLOBAL”出现在左侧,
我该如何解决这个问题?任何答案谢谢
您可以在此网址上找到报告的外观
I created a template file with ireport 4.0.2 and set the template file in code :
drb.setTemplateFile("report1.jrxml");
However, I cant set the title of the template when I do this:
drb.setTitle("Comptes du client") //defines the title of the report
.setSubtitle("Détails Compte ")
the second problem that when i add a GlobalFooterVariable(columnSolde, DJCalculation.SUM)
,it works but I have a label "GLOBAL" that appear in the left
how can i fix this ? any answer thanks
You can find the report how it look on this url
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
放
drb.setGrandTotalLegend("总计")
drb.setGrandTotalLegendStyle(footerStyle)
并将页脚文本的样式设置为:
Set
drb.setGrandTotalLegend("Grand Total ")
drb.setGrandTotalLegendStyle(footerStyle)
and set the style for footer text as: