3
我正在使用DynamicJasper API開發excel報告。我能夠從給定的數據源生成報告,但報告中的列仍然顯得很窄。我搜索得到這個解決方案,在許多地方人們回答setUseFullPageWidth(true);
在DynamicReportBuilder
。我試過這個,但它不能解決我的問題。如何在動態jasper excel報告中設置列寬dynamicaly?
我正在使用DynamicJasper API開發excel報告。我能夠從給定的數據源生成報告,但報告中的列仍然顯得很窄。我搜索得到這個解決方案,在許多地方人們回答setUseFullPageWidth(true);
在DynamicReportBuilder
。我試過這個,但它不能解決我的問題。如何在動態jasper excel報告中設置列寬dynamicaly?
用途: setWidth(整數)
AbstractColumn[] startColsParams = {
ColumnBuilder.getNew().setColumnProperty(new ColumnProperty(KEY_AA_ID, String.class.getName()))
.setWidth(new Integer(40)).setTitle("AA").setStyle(style).build(),
ColumnBuilder.getNew().setColumnProperty(new ColumnProperty(KEY_BB_ID, String.class.getName()))
.setWidth(new Integer(160)).setTitle("BB").setStyle(style).build(),
};