How to add page number option in footer with DynamicJasper API?
I am creating report with help of code:
FastReportBuilder fr = new FastReportBuilder();
开发者_如何学C
I want to add page number in footer of each page like.
page 1/3
page 2/3
As documented in the HOW-TO something like this:
FastReportBuilder fr = new FastReportBuilder();
fr.addAutoText(
AutoText.AUTOTEXT_PAGE_X_SLASH_Y,
AutoText.POSITION_FOOTER,
AutoText.ALIGNMENT_LEFT
)
精彩评论