For few text I am facing truncation even after using textAdjust="StretchHeight" .
code :
<textField textAdjust="StretchHeight" isBlankWhenNull="true">
<reportElement x="149" y="5" width="101" height="18" isRemoveLineWhenBlank="true" isPrintWhenDetailOverflows="true" uuid="0845b444-82d2-4eaf-b421-49600b2fe44a">
</reportElement>
<textElement textAlignment="Left" verticalAlignment="Justified">
<font fontName="Arial" size="9"/>
</textElement>
<textFieldExpression><![CDATA[$F{Description}]]></textFieldExpression>
</textField>
the data for the field $F{Description} that got truncated is "Bus Plug,XJLHD:BPJH2GAED445NN"
I got values only till Bus Plug,XJLHD:BPJH2GAED4 and 45NN got truncated.
It printed Bus on first line and from Plug,XJLHD:BPJH2GAED4 on next line but it didn't stretched further to next line so it got truncated.
I am using JasperReports maven dependency of version 6.20.0 in my spring boot application.