我使用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”出现在左边
我该如何解决这个问题?任何答案谢谢
您可以在此网址上找到报告的外观
答案 0 :(得分:0)
设置
drb.setGrandTotalLegend("Grand Total ")
drb.setGrandTotalLegendStyle(footerStyle)
并将页脚文本的样式设置为:
footerStyle= new Style();
footerStyle.setHorizontalAlign(HorizontalAlign.RIGHT);