alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class PivotChartZoomSettings

    Allow options to customize the pivot chart zooming with different properties such as enablePinchZooming, enableSelectionZooming, enableDeferredZooming, enableMouseWheelZooming, zoom modes, toolbarItems, enableScrollbar and enablePan.

    Inheritance
    object
    ComponentBase
    OwningComponentBase
    SfOwningComponentBase
    PivotChartZoomSettings
    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.OnAfterRenderAsync(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.Dispose(bool)
    OwningComponentBase.IsDisposed
    OwningComponentBase.ScopedServices
    Namespace: Syncfusion.Blazor.PivotView
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class PivotChartZoomSettings : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

    Constructors

    PivotChartZoomSettings()

    Declaration
    public PivotChartZoomSettings()

    Properties

    EnableDeferredZooming

    If set to true, zooming will be performed on mouse up. It requires EnableSelectionZooming to be true.

    Declaration
    [Parameter]
    public bool EnableDeferredZooming { get; set; }
    Property Value
    Type
    bool

    EnableMouseWheelZooming

    If set to true, chart can be zoomed by using mouse wheel.

    Declaration
    [Parameter]
    public bool EnableMouseWheelZooming { get; set; }
    Property Value
    Type
    bool

    EnablePan

    Specifies whether chart needs to be panned by default.

    Declaration
    [Parameter]
    public bool EnablePan { get; set; }
    Property Value
    Type
    bool

    EnablePinchZooming

    If to true, chart can be pinched to zoom in / zoom out.

    Declaration
    [Parameter]
    public bool EnablePinchZooming { get; set; }
    Property Value
    Type
    bool

    EnableScrollbar

    Specifies whether axis needs to have scrollbar.

    Declaration
    [Parameter]
    public bool EnableScrollbar { get; set; }
    Property Value
    Type
    bool

    EnableSelectionZooming

    If set to true, chart can be zoomed by a rectangular selecting region on the plot area.

    Declaration
    [Parameter]
    public bool EnableSelectionZooming { get; set; }
    Property Value
    Type
    bool

    Mode

    Allows to specify whether to allow zooming vertically or horizontally or in both ways. They are, X: Chart can be zoomed horizontally. Y: Chart can be zoomed vertically. X,Y: Chart can be zoomed both vertically and horizontally. It requires EnableSelectionZooming to be true.

    Declaration
    [Parameter]
    public PivotChartZoomMode Mode { get; set; }
    Property Value
    Type
    PivotChartZoomMode

    ToolbarItems

    Allows to set the toolkit options for the zooming as follows: ZoomIn ZoomOut Pan Zoom Reset.

    Declaration
    [Parameter]
    public List<PivotChartToolbarItems> ToolbarItems { get; set; }
    Property Value
    Type
    List<PivotChartToolbarItems>

    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
    ComponentBase.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
    ComponentBase.OnParametersSetAsync()

    Implements

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