Question

I use iReport 5.5.0. How to center align a barcode component?

Relevant fragment of my jrxml is below.

        <componentElement>
            <reportElement x="0" y="9" width="113" height="36" uuid="a11badb4-7c31-4011-83ae-f287b457939a"/>
            <jr:Code128 xmlns:jr="http://jasperreports.sourceforge.net/jasperreports/components" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd" textPosition="bottom">
                <jr:codeExpression><![CDATA[$F{number}]]></jr:codeExpression>
            </jr:Code128>
        </componentElement>
Was it helpful?

Solution

Create a style, let's call it "Barcode", like:

<style name="Barcode" fontName="Helvetica" fontSize="10" hAlign="Center" vAlign="Middle"/>

and set the style property of your barcode element to "Barcode".

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top