Class GroupingSettings
This class contains settings for data grouping and aggregation of the RadChart databinding engine.
Inheritance
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class GroupingSettings : DependencyObject
Constructors
GroupingSettings()
Fields
GroupDescriptorsProperty
Identifies the GroupDescriptors dependency property.
Declaration
public static readonly DependencyProperty GroupDescriptorsProperty
Field Value
System.Windows.DependencyProperty
|
ShouldCreateSeriesForLastGroupProperty
Identifies the ShouldCreateSeriesForLastGroup dependency property.
Declaration
public static readonly DependencyProperty ShouldCreateSeriesForLastGroupProperty
Field Value
System.Windows.DependencyProperty
|
ShouldFlattenSeriesProperty
Identifies the ShouldFlattenSeries dependency property.
Declaration
public static readonly DependencyProperty ShouldFlattenSeriesProperty
Field Value
System.Windows.DependencyProperty
|
StackGroupFieldNameProperty
Identifies the StackGroupFieldName dependency property.
Declaration
public static readonly DependencyProperty StackGroupFieldNameProperty
Field Value
System.Windows.DependencyProperty
|
Properties
GroupDescriptors
Gets a collection of ChartGroupDescriptor objects used to group the items collection of this instance.
Declaration
public ChartGroupDescriptorCollection GroupDescriptors { get; }
Property Value
ChartGroupDescriptorCollection
The group descriptors. |
ShouldCreateSeriesForLastGroup
Gets or sets a value indicating whether RadChart should create series for last group or it will be used for aggregation functions only.
Declaration
public bool ShouldCreateSeriesForLastGroup { get; set; }
Property Value
System.Boolean
|
Remarks
The default value is false.
ShouldFlattenSeries
When this property is set to true it will instruct RadChart to combine all grouped series data points into a single series.
Declaration
public bool ShouldFlattenSeries { get; set; }
Property Value
System.Boolean
|
StackGroupFieldName
Gets or sets the field name used for databinding the StackGroup in case of StackedBar series.
Declaration
public string StackGroupFieldName { get; set; }
Property Value
System.String
|