Class Sort
Allows specific fields associated with sort settings to order their members either in ascending or descending that used to be displayed in the pivot table.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class Sort
Constructors
Sort()
Declaration
public Sort()
Properties
Name
Allows to set the field name to order their members either in ascending or descending in the pivot table.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
| Type |
|---|
| string |
Order
Allows to apply sorting to the specified field either by ascending or descending or JSON order. 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.
None: It allows to display the field members based on JSON order.
Declaration
[JsonPropertyName("order")]
[JsonConverter(typeof(JsonStringEnumConverter))]
public Sorting Order { get; set; }
Property Value
| Type |
|---|
| Sorting |