Empty pages in RDLC-Report

前端 未结 18 1098
清酒与你
清酒与你 2021-02-01 01:11

I have a rdlc report that conains a tablix, nothing other. The Tablix expands in horizontal direction to show days and in the vertical direction to show groups.

The tabl

18条回答
  •  梦谈多话
    2021-02-01 01:44

    I had a similar problem, I solved it this way

    For instance for width, the following equation should be satisfied

    PageSize >= LeftMargin +  BodySize + RightMargin 
    

    where to find BodySize?

    Press F4 -> CLick somewhere inside the report -> you will find body property(look at size property, take the width value)

    Where to find report PageSize?

    click somewhere outside the report -> you will find report property ( look at PageSize (take its width value), and margins (Left, right, ..), take left and right margin values)

    take values from these properties, and check if they meet

    PageSize >= LeftMargin +  BodySize + RightMargin 
    

提交回复
热议问题