iReport:为细节带设置固定高度

iReport : set a fixed height for detail band

我在 eclipse 中使用 iReport。 我必须显示一个值列表,我需要为将显示值的区域(详细信息带)设置一个固定高度。假设 10 行。

然后在这个详细信息带下方我有两个字段表示详细信息中显示的值的总和。
总和必须显示在我页面的特定位置:在 10 行详细信息带下方,无论详细信息带是否已满。这意味着如果我只显示 6 行,我必须在下面有 4 个空行才能达到 10 行。

如果显示的值超过 10 行,则会创建第二页。

不确定我是否清楚,但如果有人可以帮助我解决这个问题...... 谢谢

您可以使用背景带形成如下网格结构,

<background>
    <band height="555" splitType="Stretch">
        <rectangle>
            <reportElement x="0" y="59" width="555" height="427" uuid="ee3fa6a5-eddb-4b38-b834-f2658bcf92d1"/>
        </rectangle>
        <line>
            <reportElement x="0" y="95" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="0" y="125" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="0" y="155" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="0" y="185" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="0" y="215" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="0" y="245" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="0" y="275" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="0" y="305" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="0" y="335" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="0" y="365" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="0" y="395" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="0" y="425" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="0" y="455" width="555" height="1" uuid="4494e946-4ff5-4d57-b3eb-9d64eda302c4"/>
        </line>
        <line>
            <reportElement x="142" y="59" width="1" height="427" uuid="01f3d5fc-9d23-4c7b-96cf-0ff7b3285400"/>
        </line>
        <line>
            <reportElement x="308" y="59" width="1" height="427" uuid="01f3d5fc-9d23-4c7b-96cf-0ff7b3285400"/>
        </line>
        <line>
            <reportElement x="443" y="59" width="1" height="427" uuid="01f3d5fc-9d23-4c7b-96cf-0ff7b3285400"/>
        </line>
        <line>
            <reportElement x="555" y="59" width="1" height="427" uuid="01f3d5fc-9d23-4c7b-96cf-0ff7b3285400"/>
        </line>
    </band>
</background>

希望对您有所帮助。