如何修改标题模板jrxml

发布于 2024-11-05 09:07:07 字数 521 浏览 3 评论 0原文

我使用 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”出现在左侧,

我该如何解决这个问题?任何答案谢谢

您可以在此网址上找到报告的外观

https://i.sstatic.net/6h0Vq .png

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

https://i.sstatic.net/6h0Vq.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤千羽 2024-11-12 09:07:07


drb.setGrandTotalLegend("总计")
drb.setGrandTotalLegendStyle(footerStyle)

并将页脚文本的样式设置为:

footerStyle= new Style();
footerStyle.setHorizontalAlign(HorizontalAlign.RIGHT);

Set
drb.setGrandTotalLegend("Grand Total ")
drb.setGrandTotalLegendStyle(footerStyle)

and set the style for footer text as:

footerStyle= new Style();
footerStyle.setHorizontalAlign(HorizontalAlign.RIGHT);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文