pathfinder
pathfinder

Reputation: 127

jasper report(ireport) line/border not following to next group

My report border is not displayed in continues way... As shown in the image below i have 5 sections

The image below is showing up only 1st page wherein 2nd page(detail section) contains the images of the project.

As you can see there is a gap at the border after group header 2 -> footer

I've used line(element from palette) as a border, i've tried all types of stretch type but no luck :(

enter image description here

Can someone please help me out on how to resolve the issue.

Here is my JRXML code

http://pastebin.com/RbM51GHU

Upvotes: 1

Views: 1536

Answers (1)

Petter Friberg
Petter Friberg

Reputation: 21710

This is since the detail band does not run to the end of your report.

Since you have isStretchWithOverflow="true" on certain textfield's we can not make the detail band to take whole page size (you would risk that it goes on next page if something in group band stretch's)

The solution is to add the two blue vertical border's in the background band and remove these from the detail, group and footer band.

Upvotes: 1

Related Questions