Hi,
For my current project I need to output some information in a ReportViewer which is reading an RDLC. While the report looks correct in the viewer, and even looks correct in the generated Excel document, the PDF is giving me problems. The report looks something along the lines of this
-------------------------------------------------------------------------
Column1Head Column2Head Column3Head Column4Head
Column1 Column2 Column3 Column4
Column1 Column2 Column3 Column4
Column1 Column2 Column3 Column4
---------------------------------------------------------------------
In the PDF, however, it is doing the following
-----------------------------------------------------------------------
Column1Head Column2Head Column3Head
Column1 Column2 Column3
Column1 Column2 Column3
Column1 Column2 Column3
Column4Head
Column4
Column4
Column4
--------------------------------------------------------------------
In other words, rather than breaking each line to accomodate the page width, it is breaking the entire table. I would prefer it to do neither of these. Is there any way to instruct the ReportViewer on some different parameters for the PDF generation? Perhaps a page width property differing from that of the actual reportviewer?