开发者

Display Full Text in Excel without truncation

开发者 https://www.devze.com 2023-03-08 23:55 出处:网络
How to d开发者_运维问答isplay Full Text in Excel without truncation programatically? Currently the data is getting truncated. Is it possible to automatically adjust the row height so as to display the

How to d开发者_运维问答isplay Full Text in Excel without truncation programatically? Currently the data is getting truncated. Is it possible to automatically adjust the row height so as to display the enitre text?



I got these problems also and solved them this way:
For the first one, add the following property to your report:

net.sf.jasperreports.print.keep.full.text

and put it to true

You can also add this property to a specific text field. For more information, refer to this link

For the second one, as Deathtiny says, add isStretchWithOverflow=true to the field that you want, for it to grow with the amount of text in it.

I hope this helps.


Try to set the isStretchWithOverflow property to True for the concerned textfield :

<textField isStretchWithOverflow="true">
   ...
</textField>

It worked for me.

0

精彩评论

暂无评论...
验证码 换一张
取 消