我正在使用 ireport-4.5.0,jasper-reports-4.5.0。我正在尝试将边框添加到列标题。当我在谷歌搜索时,我发现我们可以使用矩形获取边框。我使用了矩形但是我没有得到边框。下面是我正在使用的代码。
<columnHeader>
<band height="39" splitType="Stretch">
<rectangle>
<reportElement x="131" y="0" width="424" height="39"/>
</rectangle>
<rectangle>
<reportElement x="0" y="1" width="131" height="38"/>
</rectangle>
<staticText>
<reportElement x="11" y="16" width="108" height="14"/>
<textElement>
<font size="12" isBold="true"/>
</textElement>
<text><![CDATA[Business Name]]></text>
</staticText>
<staticText>
<reportElement x="154" y="10" width="361" height="20"/>
<textElement textAlignment="Center">
<font size="12" isBold="true"/>
</textElement>
<text><![CDATA[Sales Report]]></text>
</staticText>
</band>
</columnHeader>
任何人都可以指出我犯错的正确方向。
提前致谢。