Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RDLC tablix colspan equivalent

Is their some sort of colspan equivalent for the RDLC markup? I of course tried colspan and the report doesn't render in design view then, deserialaztion error. The project and zipfile are much longer than the single column to display.

enter image description here

like image 978
Somejerk Avatar asked Jun 07 '12 21:06

Somejerk


2 Answers

The answer was to select all the cells, right click and choose merge cells.

like image 72
Somejerk Avatar answered Nov 13 '22 16:11

Somejerk


To do this using markup, try:

<TablixCell>
  <CellContents>
    <Rectangle Name="Rectangle1">
    ...
    </Rectangle>
    <ColSpan>2</ColSpan>
  </CellContents>
</TablixCell>
like image 1
ZeroGravityChimp Avatar answered Nov 13 '22 17:11

ZeroGravityChimp