We have a problem printing the xamPivotGrid
When there's little or few data in the pivot, ie its a lot smaller than the report area, it always fills the entire space of the report (see attached, from Samples Browser)
We have even tried to template the report content, but it generates such a big image that the template is useless.
Please advise as the reports from the pivot looks really sille when it always fills the entire report
Hi,The report settings are applied to all elements in the report and whether you choose to keep the HorizontalPaginationMode.Scale it will stretch the XamPivotGrid control to fill the available space.Customization of the pagination mode on section bases is not currently available. You can add it as new suggestion at http://ideas.infragistics.com.Submitting your idea will allow you to communicate directly with our product management team, track the progress of your idea at any time, see how many votes it got, read comments from other developers in the community, and see if someone from the product team has additional questions for you.Remember when submitting your idea to explain the context in which a feature would be used and why it is needed as well as anything that would prevent you from accomplishing this today. You can even add screenshots to build a stronger case. Remember that for your suggestion to be successful, you need other members of the community to vote for it. You can also link back to this thread for additional details.Please let me know if you have any other questions regarding the measures order.
Any feedback on this?
Thanks for the reply, but Mosaic causes other problems now:
When using Mosaic, the pivot looks as expected, but any other pages that for instance have a wide xamdatachart truncates the wide image.
So in the report, for the pivot, I want it mosaic, but the other report sections should scale...
Heres an example of my report in Scale mode (chart not truncated, but HUGE pivot grid
Hello,The XamPivotGrid empty cells are displayed when the columns and rows header are expanded so in this scenario for each column and row an empty cell will be printed.Another thing to note in the Customizing Report Setting sample in the Samples Browser is the Horizontal Pagination Mode is set to Scale. This scales the XamPivotGrid to fit to the page by maintaining the aspect ratio (the scale factor for width and height is the same). You can use the Mosaic option if you prefer to keep the original size of the XamPivotGrid. In code the setting will look like this:report.ReportSettings.HorizontalPaginationMode = HorizontalPaginationMode.Mosaic;Please do not hesitate to let me know if you have any questions.