alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    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
    object
    ComponentBase
    OwningComponentBase
    SfOwningComponentBase
    SfBaseComponent
    SfDataBoundComponent
    PivotViewPageSettings
    PivotPagerTemplateContext
    Implements
    IComponent
    IHandleEvent
    IHandleAfterRender
    IDisposable
    Inherited Members
    ComponentBase.Assets
    ComponentBase.AssignedRenderMode
    ComponentBase.BuildRenderTree(RenderTreeBuilder)
    ComponentBase.DispatchExceptionAsync(Exception)
    ComponentBase.InvokeAsync(Action)
    ComponentBase.InvokeAsync(Func<Task>)
    ComponentBase.OnAfterRender(bool)
    ComponentBase.OnInitialized()
    ComponentBase.OnParametersSet()
    ComponentBase.RendererInfo
    ComponentBase.SetParametersAsync(ParameterView)
    ComponentBase.ShouldRender()
    ComponentBase.StateHasChanged()
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    OwningComponentBase.IsDisposed
    OwningComponentBase.ScopedServices
    SfBaseComponent.Dispose()
    SfBaseComponent.Dispose(bool)
    SfBaseComponent.GetEffectivePlatform()
    SfBaseComponent.GetMainComponentPlatform()
    SfBaseComponent.IsMainLicenseComponent()
    SfBaseComponent.LicenseContext
    SfBaseComponent.OnObservableChange(string, object, bool, NotifyCollectionChangedEventArgs)
    SfBaseComponent.ValidateLicense()
    SfDataBoundComponent.DataManager
    SfDataBoundComponent.MainParent
    SfDataBoundComponent.OnAfterRenderAsync(bool)
    SfDataBoundComponent.SetDataManager<T>(object)
    Namespace: Syncfusion.Blazor.PivotView
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class PivotViewPageSettings : SfDataBoundComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

    Constructors

    PivotViewPageSettings()

    Declaration
    public PivotViewPageSettings()

    Properties

    ColumnPageSize

    Gets or sets the total number of columns to display per page in the pivot table.

    Declaration
    [Parameter]
    [JsonPropertyName("columnPageSize")]
    public int ColumnPageSize { get; set; }
    Property Value
    Type Description
    int

    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
    [Parameter]
    [JsonPropertyName("currentColumnPage")]
    public int CurrentColumnPage { get; set; }
    Property Value
    Type Description
    int

    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
    [Parameter]
    [JsonPropertyName("currentRowPage")]
    public int CurrentRowPage { get; set; }
    Property Value
    Type Description
    int

    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
    [Parameter]
    [JsonPropertyName("rowPageSize")]
    public int RowPageSize { get; set; }
    Property Value
    Type Description
    int

    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
    Task

    A System.Threading.Tasks.Task representing any asynchronous operation.

    Overrides
    SfDataBoundComponent.OnInitializedAsync()

    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
    Task

    A System.Threading.Tasks.Task representing any asynchronous operation.

    Overrides
    SfDataBoundComponent.OnParametersSetAsync()

    Implements

    IComponent
    IHandleEvent
    IHandleAfterRender
    IDisposable
    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved