alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class PivotFormatSetting

    Allows specific fields used to display the values with specific format that used to be displayed in the pivot table. For example, to display a specific field with currency formatted values in the pivot table, the set the Format property to be C.

    Inheritance
    object
    ComponentBase
    OwningComponentBase
    SfOwningComponentBase
    PivotFormatSetting
    PivotFieldListFormatSetting
    PivotViewFormatSetting
    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.OnInitializedAsync()
    ComponentBase.OnParametersSet()
    ComponentBase.OnParametersSetAsync()
    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 PivotFormatSetting : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

    Constructors

    PivotFormatSetting()

    Declaration
    public PivotFormatSetting()

    Properties

    Currency

    It allows to specify the currency code to be used for formatting.

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

    Format

    It allows to specify custom number format for formatting.

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

    MaximumFractionDigits

    It allows to specify maximum fraction digits to the formatted value.

    Declaration
    [Parameter]
    [JsonPropertyName("maximumFractionDigits")]
    public int MaximumFractionDigits { get; set; }
    Property Value
    Type
    int

    MaximumSignificantDigits

    It allows to specify maximum significant digits to the formatted value.

    Declaration
    [Parameter]
    [JsonPropertyName("maximumSignificantDigits")]
    public int MaximumSignificantDigits { get; set; }
    Property Value
    Type
    int

    MinimumFractionDigits

    It allows to specify minimum fraction digits to the formatted value.

    Declaration
    [Parameter]
    [JsonPropertyName("minimumFractionDigits")]
    public int MinimumFractionDigits { get; set; }
    Property Value
    Type
    int

    MinimumIntegerDigits

    It allows to specify minimum integer digits to the formatted value.

    Declaration
    [Parameter]
    [JsonPropertyName("minimumIntegerDigits")]
    public int MinimumIntegerDigits { get; set; }
    Property Value
    Type
    int

    MinimumSignificantDigits

    It allows to specify minimum significant digits to the formatted value.

    Declaration
    [Parameter]
    [JsonPropertyName("minimumSignificantDigits")]
    public int MinimumSignificantDigits { get; set; }
    Property Value
    Type
    int

    Name

    It allows to set the field name to apply format settings.

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

    Type

    It allows to specify the type of date formatting either date, dateTime or time.

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

    UseGrouping

    It allows to use grouping to the formatted value.

    Declaration
    [Parameter]
    [JsonPropertyName("useGrouping")]
    public bool UseGrouping { get; set; }
    Property Value
    Type
    bool

    Implements

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