Forum Discussion
Paginated Report not rendering properly in Service
- 6 months ago
1) Validate page size vs body size
In Report Builder:
-
Report Properties → Page Setup
-
Note Page Width and Left/Right margins
-
-
Click the grey area (Body) and check:
-
Body → Width
-
Rule is:
Body.Width must be ≤ PageWidth − LeftMargin − RightMargin2) Stop textboxes from moving
For any textbox that should not resize:
-
Set CanGrow = False
-
Set CanShrink = False
Also check any surrounding Rectangles/List/Tablix containers:
-
If a parent container grows, children can shift.
3) Don’t use a textbox background image for full-page layouts
Service is more reliable if you use an Image control instead:
-
Insert → Image
Then place your textboxes on top of the Image.
-
1) Validate page size vs body size
In Report Builder:
-
Report Properties → Page Setup
-
Note Page Width and Left/Right margins
-
-
Click the grey area (Body) and check:
-
Body → Width
-
Rule is:
Body.Width must be ≤ PageWidth − LeftMargin − RightMargin
2) Stop textboxes from moving
For any textbox that should not resize:
-
Set CanGrow = False
-
Set CanShrink = False
Also check any surrounding Rectangles/List/Tablix containers:
-
If a parent container grows, children can shift.
3) Don’t use a textbox background image for full-page layouts
Service is more reliable if you use an Image control instead:
-
Insert → Image
Then place your textboxes on top of the Image.
- sufregs6 months ago
Helper I
Step 3 helped for the image, thanks!
I however still had the textboxes shifting. Even after I set my row textboxes/rectangles to Can Grow/Can Shrink = False, it would revert back to True. What worked was to add a "page break after" on the rectangle just before the image and that kept the ovelayed textboxes in place.