I'm working with rdlc report. My report looks like this:
Red color - title, blue and green - rectangles with tables inside.
I need to hide blue rectangle. But after rectangle hide, the report looks like this:
How can I remove that blank space between the title and green rectangle?
Don't use
Rectangles
and put yourLabel
and your twoTablix
in a mainTablix
with 5 header rows.Then using
Advanced Mode
setHidden
property of row 3 (blueTablix
) and 4 (space between blueTablix
and greenTablix
) according to your needs.