How to display full text in Excel without trimming programmatically? Currently truncated data. Is it possible to automatically adjust the height of the line to display the enitre text?
I also got these problems and solved them like this:For the first, add the following property to your report:
net.sf.jasperreports.print.keep.full.text
and put it in true
true
You can also add this property to a specific text field. For more information see this link.
For the second, as Deathtiny says, add isStretchWithOverflow=true to the desired field so that it increases with the amount of text in it.
isStretchWithOverflow=true
Hope this helps.
Try setting the isStretchWithOverflow property to True for the corresponding text field:
<textField isStretchWithOverflow="true"> ... </textField>
It worked for me.