从jasper报告到xls - style问题

时间:2018-03-20 16:06:10

标签: jasper-reports

我尝试从java中的jasper报告(jrxml文件)创建xls。

一切正常但风格不适用。

这是风格

<style name="Table_TH" mode="Opaque" backcolor="#ededed"  isBold="true" fontName="Arial Black" >
    <box>
        <pen lineWidth="0.5" lineColor="#d4d4d4"/>
        <topPen lineWidth="0.5" lineColor="#d4d4d4"/>
        <leftPen lineWidth="0.5" lineColor="#d4d4d4"/>
        <bottomPen lineWidth="0.5" lineColor="#d4d4d4"/>
        <rightPen lineWidth="0.5" lineColor="#d4d4d4"/>
    </box>
</style>

这是表

的一部分

                           

样式isBold =&#34; true&#34; fontName =&#34; Arial Black&#34;被忽略了。

此外,我想要更改文字颜色但属性是什么?

添加元素代码

<jr:column width="140" uuid="980fffb5-1088-47a6-b00f-b5d08b7093c9">
    <property name="com.jaspersoft.studio.components.table.model.column.name" value="Column1"/>
    <jr:tableHeader height="15" style="Table_TH">
        <staticText>
            <reportElement x="0" y="0" width="140" height="15" uuid="16679b95-2e6e-4ca1-b8b6-dd7b74267c56"/>
            <text><![CDATA[CHIAVE]]></text>
        </staticText>
    </jr:tableHeader>
    <jr:detailCell height="15" style="Table_TD">
        <textField>
            <reportElement x="0" y="0" width="140" height="15" uuid="341e7faf-9680-4941-a9a4-ac78b8f4aae0"/>
            <textFieldExpression><![CDATA[$F{typology_key}]]></textFieldExpression>
        </textField>
    </jr:detailCell>
</jr:column>

0 个答案:

没有答案