を使用してクリッピング無視isStretchWithOverflowプロパティ値をレンダリングしているがgroupHeaderでテキストをラップすることが可能ですか?私はそれが細部のセクションで働いている、 しかし、グループ内のテキストは折り返したいと思わない。私は私が考えるか、Googleから見つけることができるラッピングのすべての組み合わせを試してみました。 真値とisStretchWithOverflowプロパティを設定テキストはPDF輸出国
は<style name="reportProject" isDefault="false" fontName="Times" fontSize="10" isBold="false" isItalic="true" isUnderline="false" isStrikeThrough="false"/>
<group name="PROJHEADER" minHeightToStartNewPage="60">
<groupExpression><![CDATA[$F{projectHeader}]]>
</groupExpression>
<groupHeader>
<band height="40" splitType="Stretch">
<printWhenExpression><![CDATA[Boolean.valueOf($F{projectHeader}.length() > 0)]]>
</printWhenExpression>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"
evaluationTime="Group" evaluationGroup="PROJHEADER" bookmarkLevel="1">
<reportElement positionType="Float" style="reportProject" mode="Opaque" x="0" y="5"
width="515" height="15" backcolor="#C0C0C0"
stretchType="RelativeToBandHeight"/>
<box leftPadding="10">
<bottomPen lineWidth="1.0"/>
</box>
<textElement textAlignment="Left" verticalAlignment="Middle" />
<textFieldExpression class="java.lang.String"><![CDATA[$F{projectHeader}]]>
</textFieldExpression>
</textField>
</band>
</groupHeader>
</group>
私はすでにisStretchWithOverflow = "true" を持っていました。私はそのプロパティを追加したが、それでも機能しなかった。しかし、私はtextElementをあなたのように単純にすることにしました。ありがとう。 – JimClarke