Hi,
Here is my code,
Report rep = new Report();ISection sec = rep.AddSection();
sec.addtable();......Graphics g = sec.AddCanvas().CreateGraphics();Chart.RenderPdfFriendlyGraphics(g);this.documentExporter.Export(this.grid, sec);
I have created section added table and graph then finally export it with grid.
It exports to pdf, but table and graph comes in single page, I need page break between them?
You can add a pagebreak element to the report section as described in the following link:
http://help.infragistics.com/NetAdvantage/ASPNET/2010.1/CLR3.5/?page=DocumentEngine_Page_Break.html
Magued