alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Class ValueSortSettings

    Allows to sort individual value field and its aggregated values either in row or column axis to ascending or descending order.

    Inheritance
    object
    ValueSortSettings
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.PivotView
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class ValueSortSettings

    Constructors

    ValueSortSettings()

    Declaration
    public ValueSortSettings()

    Properties

    ColumnHeaderText

    It allows to set the member name of a specific field for value sorting in the column axis. It is only applicable for relation data source.

    Declaration
    [JsonPropertyName("columnHeaderText")]
    public string ColumnHeaderText { get; set; }
    Property Value
    Type
    string

    ColumnIndex

    It allows to set the column index of the value cell.

    Declaration
    [JsonPropertyName("columnIndex")]
    public int? ColumnIndex { get; set; }
    Property Value
    Type
    int?

    ColumnSortOrder

    Allows to apply sorting to the specified field either by ascending or descending in the Column axis. The types are, Ascending: It allows to display the field members in ascending order. Descending: It allows to display the field members in descending order. It is only applicable for relation data source.

    Declaration
    [JsonPropertyName("columnSortOrder")]
    [JsonConverter(typeof(JsonStringEnumConverter))]
    public Sorting ColumnSortOrder { get; set; }
    Property Value
    Type
    Sorting

    HeaderDelimiter

    It allows to set the delimiter, which is used a separator to split the given header text.

    Declaration
    [JsonPropertyName("headerDelimiter")]
    public string HeaderDelimiter { get; set; }
    Property Value
    Type
    string

    HeaderText

    It allows to set the member name of a specific field for value sorting.

    It is applicable only for OLAP data source. For relational data source use ColumnHeaderText and RowHeaderText properties.

    Declaration
    [JsonPropertyName("headerText")]
    public string HeaderText { get; set; }
    Property Value
    Type
    string

    Measure

    It allows to set the measure name to achieve value sorting based on this.

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

    RowHeaderText

    It allows to set the member name of a specific field for value sorting in the row axis. It is only applicable for relation data source.

    Declaration
    [JsonPropertyName("rowHeaderText")]
    public string RowHeaderText { get; set; }
    Property Value
    Type
    string

    RowSortOrder

    Allows to apply sorting to the specified field either by ascending or descending in the Row axis. The types are, Ascending: It allows to display the field members in ascending order. Descending: It allows to display the field members in descending order. It is only applicable for relation data source.

    Declaration
    [JsonPropertyName("rowSortOrder")]
    [JsonConverter(typeof(JsonStringEnumConverter))]
    public Sorting RowSortOrder { get; set; }
    Property Value
    Type
    Sorting

    SortOrder

    Allows to apply sorting to the specified field either by ascending or descending. The types are, Ascending: It allows to display the field members in ascending order. Descending: It allows to display the field members in descending order.

    It is applicable only for OLAP data source. For relational data source use ColumnSortOrder and RowSortOrder properties.

    Declaration
    [JsonPropertyName("sortOrder")]
    [JsonConverter(typeof(JsonStringEnumConverter))]
    public Sorting SortOrder { get; set; }
    Property Value
    Type
    Sorting
    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved