Reputation: 21
I need to create report using Apache-FOP, I want that report in different font-sizes such as (10pts,20pts) , so is that possible to give font size as input in xsl template? Please if you have any suggestions please post it.
Upvotes: 0
Views: 963
Reputation: 23844
<xsl:attribute name="font-size">24pt</xsl:attribute>
<xsl:attribute name="font-family">Helvetica</xsl:attribute>
<xsl:attribute name="color">#848587</xsl:attribute>
<xsl:attribute name="font-weight">Light</xsl:attribute>
Upvotes: 0