我想知道如何更改字段表达式中的字体大小。它的意思是我有两个db字段。那么现在我想用表达式合并这两个字段。
示例: $ F {type1} +"平衡是单反:" + $ F {type2}
我在字段表达式中编写了这个简单的代码。
但现在问题是我想将10px字体大小设置为$ F {type1}字段和 12px字体大小到$ F {type2}字段。
谢谢
答案 0 :(得分:0)
使用样式文字:
<textField>
<reportElement width="300" y="0" x="0" height="200"/>
<textElement markup="styled"/>
<textFieldExpression><![CDATA["<style size=\"10\">" + $F{type1} + "</style> Balance is SLR : <style size=\"12\">" + $F{type2} + "</style>"]]></textFieldExpression>
</textField>
查看有关功能here的一些详细信息。