propertyExpressionmay not be used to set the width , which is attribute. They are used to add a property, for example, during export, or to pass a value toChartCustomizer
These are the available properties for configuring the jasper report property.
A typical property would be
<property name="net.sf.jasperreports.export.xls.break.after.row" value="true"/>
And you can create propertyExpressionfor this:
<propertyExpression name="net.sf.jasperreports.export.xls.break.after.row"><![CDATA[$V{timeToBreak}?"true":"false"]]></propertyExpression>
source
share