Class PivotViewPageSettings
Represents a class that allows configuring the page information such as page size and current page details for each axis in order to display the pivot table with a specific page when paging.
Inheritance
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class PivotViewPageSettings : SfDataBoundComponent
Constructors
PivotViewPageSettings()
Declaration
public PivotViewPageSettings()
Properties
ColumnPageSize
Gets or sets the total number of columns to display per page in the pivot table.
Declaration
public int ColumnPageSize { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The number of columns to display per page. The default value is 5. |
CurrentColumnPage
Gets or sets the current page number of the column axis displayed in the pivot table.
Declaration
public int CurrentColumnPage { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The current page number of the column axis. The default value is 1. |
CurrentRowPage
Gets or sets the current page number of the row axis displayed in the pivot table.
Declaration
public int CurrentRowPage { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The current page number of the row axis. The default value is 1. |
RowPageSize
Gets or sets the total number of rows to display per page in the pivot table.
Declaration
public int RowPageSize { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The number of rows to display per page. The default value is 5. |
Methods
OnInitializedAsync()
Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree. Override this method if you will perform an asynchronous operation and want the component to refresh when that operation is completed.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |
Overrides
OnParametersSetAsync()
Method invoked when the component has received parameters from its parent in the render tree, and the incoming values have been assigned to properties.
Declaration
protected override Task OnParametersSetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |