当前位置: 代码迷 >> 报表 >> birt去除报表上面的日期
  详细解决方案

birt去除报表上面的日期

热度:200   发布时间:2016-05-05 07:52:05.0
birt去除报表下面的日期

birt去除报表下面的日期?
首先点击设计器主页 - 点击属性,- 取消“页眉”“页脚”。即取消显示页眉和页脚。
也可以在xml里设置

<page-setup>        <simple-master-page name="Simple MasterPage" id="2">            <property name="type">a4</property>            <property name="leftMargin">10px</property>            <property name="rightMargin">10px</property>            <property name="showHeaderOnFirst">false</property>            <property name="showFooterOnLast">false</property>  //是否显示页脚        </simple-master-page>    </page-setup>
?