DynamicReport 标题栏
DynamicReport title band
我需要将标题带宽调整为 table 宽度。有人知道怎么做吗?
我正在使用此代码
private FastReportBuilder modrb;
modrb.setTitle(getTitulo());
modrb.setSubtitle(getSubTitulo());
还有...
DynamicReport dr = modrb.build();
dr.setAllowDetailSplit(false);
dr.getOptions().setUseFullPageWidth(true);
dr.getOptions().setRightMargin(0);
我修复了设置页面项目的宽度,我取了所有列的宽度,然后将页面大小设置为所有列+100 像素,现在可以正常工作了
我需要将标题带宽调整为 table 宽度。有人知道怎么做吗?
我正在使用此代码
private FastReportBuilder modrb;
modrb.setTitle(getTitulo());
modrb.setSubtitle(getSubTitulo());
还有...
DynamicReport dr = modrb.build();
dr.setAllowDetailSplit(false);
dr.getOptions().setUseFullPageWidth(true);
dr.getOptions().setRightMargin(0);
我修复了设置页面项目的宽度,我取了所有列的宽度,然后将页面大小设置为所有列+100 像素,现在可以正常工作了