Paging in WPF OLAP Common
1 Nov 2019 / 1 minute to read
Paging enables users to view large records by breaking them into smaller segments.
Paging feature can be achieved by setting the EnablePaging property to true in a report.
The following code snippet demonstrates how to enable paging in the current report.
olapDataManager.CurrentReport.EnablePaging = true;
olapDataManager.CurrentReport.EnablePaging = True
The user can customize the page settings such as current page and page size for both row and column.
The following code explains how to customize current page and page size settings.
olapDataManager.CurrentReport.PagerOptions.CategorialCurrentPage = 1;
olapDataManager.CurrentReport.PagerOptions.SeriesCurrentPage = 2;
olapDataManager.CurrentReport.PagerOptions.CategorialPageSize = 50;
olapDataManager.CurrentReport.PagerOptions.SeriesPageSize = 50;
olapDataManager.CurrentReport.PagerOptions.CategorialCurrentPage = 1
olapDataManager.CurrentReport.PagerOptions.SeriesCurrentPage = 2
olapDataManager.CurrentReport.PagerOptions.CategorialPageSize = 50
olapDataManager.CurrentReport.PagerOptions.SeriesPageSize = 50
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page