I want to get color to alternate for the rows in a JasperReports subreport. I have all rows with the same background color but I want it to alternate. Can this be done?

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

Yes you can set up a style like this:

<style name="Zebra" mode="Transparent">
    <conditionalStyle>
        <conditionExpression><![CDATA[$V{REPORT_COUNT}%2 == 1]]></conditionExpression>
        <style backcolor="#CAC5BB"/>
    </conditionalStyle>
</style>

and add it to your report elements like this:

<reportElement style="Zebra" mode="Opaque" x="1" y="1" width="554" height="20"/>
link|improve this answer
Awesome thanks @travega – user726478 Jan 24 at 1:25
feedback

If you are not using "styles", you can have a static text field (with no text) or a rectangle with the background color that you need, overlapping the textfield with data and set the printWhenExpression to $V{report_COUNT}%2 == 1 OR $V{report_COUNT}%2 == 0

link|improve this answer
feedback

Your Answer

 
or
required, but never shown