Class ValueSortSettings
Allows to sort individual value field and its aggregated values either in row or column axis to ascending or descending order.
Inheritance
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class ValueSortSettings : Object
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
public string ColumnHeaderText { get; set; }
Property Value
Type |
---|
System.String |
ColumnIndex
It allows to set the column index of the value cell.
Declaration
public Nullable<int> ColumnIndex { get; set; }
Property Value
Type |
---|
System.Nullable<System.Int32> |
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
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
public string HeaderDelimiter { get; set; }
Property Value
Type |
---|
System.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
public string HeaderText { get; set; }
Property Value
Type |
---|
System.String |
Measure
It allows to set the measure name to achieve value sorting based on this.
Declaration
public string Measure { get; set; }
Property Value
Type |
---|
System.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
public string RowHeaderText { get; set; }
Property Value
Type |
---|
System.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
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
public Sorting SortOrder { get; set; }
Property Value
Type |
---|
Sorting |