Hello all,
I'm generating PDF of my Test.aspx page on which I'm showing data in gridview., using Infragistics documents classes. At one instance I'm adding ISection to my Infragistics.Documents.Reports.Report object as follows.
Report r = new Report();
ISection sect1 = r.AddSection();
sect1.PageSize = PageSizes.Ledger;sect1.PageOrientation = PageOrientation.Landscape;
Issue is if my grid columns are greater than 30 then columns are getting shrinked.
I want to adjust Pagesize/Page Orientation so that either PDF gets Horizontal ScrollBar or some how all column's width should be proper i.e., they should not shrink.
I tried adjusting different PageSizes as
sect1.PageSize = PageSizes.Legal;
sect1.PageSize = PageSizes.Ledger;
sect1.PageSize = PageSizes.Letter;
sect1.PageSize = PageSizes.Quarto;
and PageOrientation to LandScape/Portrait as
Go to the complete details ...