如页码= 1,页码= 2等等,动态报告API中是否有任何预先定义的属性,我知道问题太愚蠢,但我仍然无法找到这个问题的答案通过谷歌,请帮助。
答案 0 :(得分:0)
如果要在报告中添加页面号,则需要将此行添加到报告对象
try {
report()//create new report design
.columns(...) //adds columns
.pageFooter(cmp.pageXofY()) //shows number of page at page footer
.show() //shows report
.print() //prints report
...
} catch (DRException e) {
e.printStackTrace();
}