我正在使用JasperReports 4.0.2(从长远来看并没有与它绑定,但现在我们是)。
我在设置支持 3 列数据的子报告时遇到问题。我有 2 个正在打印的文本字段,当文本字段的数据太长时,它被截断。遵循JasperReport 中的建议 - 换行以在文本字段帖子中显示长文本后,我仍在努力让文本字段正确溢出以显示数据。
这是我的报告文件:
<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="record" language="groovy" columnCount="3" printOrder="Horizontal" pageWidth="572" pageHeight="752" columnWidth="157" columnSpacing="50" leftMargin="0" rightMargin="0" topMargin="0" bottomMargin="0">
<field name="geoName" class="java.lang.String"/>
<field name="count" class="java.lang.Integer"/>
<variable name="count" class="java.lang.String">
<variableExpression><![CDATA[new java.text.DecimalFormat("###,###,###,###").format($F{count})]]></variableExpression>
</variable>
<background>
<band splitType="Stretch"/>
</background>
<detail>
<band height="15" splitType="Stretch">
<textField isStretchWithOverflow="true">
<reportElement x="0" y="0" width="90" height="15" stretchType="RelativeToBandHeight" positionType="Float"/>
<textElement verticalAlignment="Middle">
<font fontName="Arial"/>
</textElement>
<textFieldExpression><![CDATA[$F{geoName}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true">
<reportElement x="90" y="0" width="67" height="15" stretchType="RelativeToBandHeight" positionType="Float"/>
<textElement textAlignment="Right" verticalAlignment="Middle">
<font fontName="Arial"/>
</textElement>
<textFieldExpression><![CDATA[$V{count}]]></textFieldExpression>
</textField>
<line>
<reportElement x="182" y="0" width="1" height="15" forecolor="#CCCCCC" stretchType="RelativeToBandHeight" positionType="Float"/>
</line>
</band>
</detail>
</jasperReport>
报告通常可以正常工作并按应有的水平扩展,但如果任一文本字段中的数据太长,它只会截断它。我唯一的解决方法是增加乐队的大小,但这看起来不太好。我也尝试过isPrintWhenDetailOverflows="true"
国旗。