Forum Discussion

sufregs's avatar
sufregs
Icon for Helper I rankHelper I
6 months ago
Solved

Paginated Report not rendering properly in Service

I built a pagin ated report on desktop and published to Service. My paginated report contains a textbox with a background image. The full image renders properly in desktop on the print layout. Howeve...
  • cengizhanarslan's avatar
    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 − 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.