Hi,
How can I print XamPivotGrid in multiple pages. I use Reporting to print as follows. EmbeddedVisualReportSection can print XamDataGrid in multiple pages, but does not seem to print XamPivotGrid. I am using V11.1, is there anyway I can print the entire XamPivotGrid in multiple pages.
Report reportObj = new Report();
reportObj.ReportSettings.HorizontalPaginationMode = HorizontalPaginationMode.Scale; EmbeddedVisualReportSection section = new EmbeddedVisualReportSection(pivotGrid); reportObj.Sections.Add(section); reportObj.Print(true, false);
Thanks
Sangeetha
Hello Sangeetha,
I have created a support ticket on your behalf with number CAS-75079-JY118L in order to link the development issue 92990 to it so that you are automatically updated when a Service Release containing your fix is available for download.
Our developers have completed their review of development issue 92990. They have determined that this is not a bug in our reporting. Currently it prints the visual element as it is currently rendered on your screen. This is why when you run your code it will only print one page with the data that is currently scrolled into view. XamDataGrid is currently the only exception of this rule as it is mentioned at the following link of our documentation:
http://help.infragistics.com/NetAdvantage/WPF/2011.1/CLR4.0/?page=WPF_Reporting_Understanding_WPF_Reporting.html
After further investigation this behavior was determined to be a new feature request. So I submit this with ID of 13683 and sent the request directly to our product management on your behalf.
If you have more information on the matter, please feel free to ask.
Great. Thanks Elena.