Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
150
Compatibility to Reporting 2010.3
posted

Hello,

I'm currently using the reporting feature of the 2010.3 release, now I have to switch to the 2011.2 release.

How can I get the same functionality I had until now with this code (with little effort):

 Report chartReport = new Report();
 EmbeddedVisualReportSection chartSection = new EmbeddedVisualReportSection(printGrid);
 chartReport.Sections.Add(chartSection);
 chartReport.ReportSettings.PageOrientation = PageOrientation.Landscape;
 chartReport.ShowPrintDialog();