Blazor Pivot Table Example - Paging
Grand Total |
|---|
Grand Total | No records to display |
Row pager
Rows per page
Column pager
Columns per page
Properties
Pager Position: |
|
Show Pager: |
|
Show Page Size: |
|
Compact View: |
|
Inverse Pager: |
This sample demonstrates using pagination to break large datasets into manageable chunks and display them page by page with built-in navigation controls.
Pagination enables optimized rendering of rows and columns without displaying entire pivot data. Enable paging via EnablePaging property set to true.
Configure page information for row and column using PivotViewPageSettings with properties:
- CurrentRowPage - Current row page number (adjustable at runtime)
- CurrentColumnPage - Current column page number (adjustable at runtime)
- RowPageSize - Records per row page (configurable at runtime)
- ColumnPageSize - Records per column page (configurable at runtime)
Customize paging UI appearance using PivotViewPagerSettings properties for position, visibility, page sizes, and template customization.
For comprehensive paging documentation, refer to the paging documentation.