alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class PivotViewConditionalSetting

    Allow options for setting the visibility of hyperlink based on specific condition. The options available here are as follows: Measure: Allows you to specify the value field caption to get visibility of hyperlink option for specific measure. Condition: Allows you to choose the operator type such as equals, greater than, less than, etc. Value1: Allows you to set the start value. Value2: Allows you to set the end value. This option will be used by default when the operator Between and NotBetween is chosen to apply.

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

    Constructors

    PivotViewConditionalSetting()

    Declaration
    public PivotViewConditionalSetting()

    Properties

    Conditions

    Allows you to choose the operator type such as equals, greater than, less than, etc. The available operators are as follows: LessThan: Allows you to get the cells that have a value that is less than the start value. GreaterThan: Allows you to get the cells that have a value that is greater than the start value. LessThanOrEqualTo: Allows you to get the cells that have a value that is lesser than or equal to the start value. GreaterThanOrEqualTo: Allows you to get the cells that have a value that is greater than or equal to the start value. Equals: Allows you to get the cells that have a value that matches with the start value. NotEquals: Allows you to get the cells that have a value that does not match with the start value. Between: Allows you to get the cells that have a value that between the start and end value. NotBetween: Allows you to get the cells that have a value that is not between the start and end value.

    Declaration
    [Parameter]
    [JsonPropertyName("conditions")]
    [JsonConverter(typeof(JsonStringEnumConverter))]
    public Condition Conditions { get; set; }
    Property Value
    Type
    Condition

    Label

    Allows you to specify the row or column header to get visibility of hyperlink option for specifc row or column header.

    Declaration
    [Parameter]
    [JsonPropertyName("label")]
    public string Label { get; set; }
    Property Value
    Type
    string

    Measure

    Allows you to specify the value field caption to get visibility of hyperlink option for specific measure.

    Declaration
    [Parameter]
    [JsonPropertyName("measure")]
    public string Measure { get; set; }
    Property Value
    Type
    string

    Value1

    Allows you to set the start value to get visibility of hyperlink option based on the condition applied. For example, if the start value is 500 and the condition Equals is used, the hyperlink should be enabled to the cells that hold the value of 500 alone.

    Declaration
    [Parameter]
    [JsonPropertyName("value1")]
    public double Value1 { get; set; }
    Property Value
    Type
    double

    Value2

    Allows you to set the end value to get visibility of hyperlink option based on the condition applied. For example, if the start value is 500, the end value is 1500 and the condition Between is used, the hyperlink should be enabled to the cells that holds the value between 500 to 1500.

    This option will be used by default when the operator Between and NotBetween is chosen to apply.

    Declaration
    [Parameter]
    [JsonPropertyName("value2")]
    public double Value2 { get; set; }
    Property Value
    Type
    double

    Methods

    Dispose(bool)

    Dispose unmanaged resources in the component.

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing
    Overrides
    OwningComponentBase.Dispose(bool)

    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