Class ChartGroupDescriptor
This class describes how a particular grouping is carried out.
Inheritance
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class ChartGroupDescriptor : DependencyObject
Constructors
ChartGroupDescriptor()
Initializes a new instance of the ChartGroupDescriptor class.
Declaration
public ChartGroupDescriptor()
ChartGroupDescriptor(String)
Initializes a new instance of the ChartGroupDescriptor class.
Declaration
public ChartGroupDescriptor(string member)
Parameters
System.String
member
The member. |
ChartGroupDescriptor(String, Type)
Initializes a new instance of the ChartGroupDescriptor class.
Declaration
public ChartGroupDescriptor(string member, Type memberType)
Parameters
System.String
member
The member. |
System.Type
memberType
Type of the member. |
ChartGroupDescriptor(IGroupDescriptor)
Initializes a new instance of the ChartGroupDescriptor class.
Declaration
public ChartGroupDescriptor(IGroupDescriptor groupDescriptor)
Parameters
IGroupDescriptor
groupDescriptor
The group descriptor. |
Fields
MemberProperty
Identifies the Member dependency property.
Declaration
public static readonly DependencyProperty MemberProperty
Field Value
System.Windows.DependencyProperty
|
MemberTypeProperty
Identifies the MemberType dependency property.
Declaration
public static readonly DependencyProperty MemberTypeProperty
Field Value
System.Windows.DependencyProperty
|
Properties
InnerDescriptor
Gets the inner descriptor.
Declaration
public IGroupDescriptor InnerDescriptor { get; }
Property Value
IGroupDescriptor
The inner descriptor. |
Member
Gets or sets the data member used for grouping.
Declaration
public string Member { get; set; }
Property Value
System.String
The member. |
MemberType
Gets or sets the type of the data member used for grouping.
Declaration
public Type MemberType { get; set; }
Property Value
System.Type
The type of the member. |