Class ChartSortDescriptor
This class describes how a particular sorting is carried out.
Inheritance
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class ChartSortDescriptor : DependencyObject
Constructors
ChartSortDescriptor()
Initializes a new instance of the ChartSortDescriptor class.
Declaration
public ChartSortDescriptor()
ChartSortDescriptor(String, ListSortDirection)
Initializes a new instance of the ChartSortDescriptor class.
Declaration
public ChartSortDescriptor(string member, ListSortDirection sortDirection)
Parameters
System.String
member
The member. |
System.ComponentModel.ListSortDirection
sortDirection
The sort direction. |
ChartSortDescriptor(ISortDescriptor)
Initializes a new instance of the ChartSortDescriptor class.
Declaration
public ChartSortDescriptor(ISortDescriptor sortDescriptor)
Parameters
ISortDescriptor
sortDescriptor
The sort descriptor. |
Fields
MemberProperty
Identifies the Member dependency property.
Declaration
public static readonly DependencyProperty MemberProperty
Field Value
System.Windows.DependencyProperty
|
SortDirectionProperty
Identifies the SortDirection dependency property.
Declaration
public static readonly DependencyProperty SortDirectionProperty
Field Value
System.Windows.DependencyProperty
|
Properties
InnerDescriptor
Gets the inner descriptor.
Declaration
public ISortDescriptor InnerDescriptor { get; }
Property Value
ISortDescriptor
The inner descriptor. |
Member
Gets or sets the member name which will be used for sorting.
Declaration
public string Member { get; set; }
Property Value
System.String
|
SortDirection
Gets or sets the sort direction for this sort descriptor. If the value is null no sorting will be applied.
Declaration
public ListSortDirection SortDirection { get; set; }
Property Value
System.ComponentModel.ListSortDirection
|