如何在使用Pentaho報表引擎進行編碼時在Subreport中使用ItemBand?Pentaho報表引擎 - 如何在Subreport中使用ItemBand
我定義我的ItemBand如下:
ItemBand rowBand = new ItemBand();
TextFieldElementFactory textFactory3 = new TextFieldElementFactory();
textFactory3.setFieldname("reportname");
Element element = textFactory3.createElement();
element.setDynamicContent(true);
rowBand.addElement(element);
itemBand2.addElement(rowBand);
現在我該怎樣使用ItemBand在我的報表?