CategoricalSeries
Base class for all ChartSeries that may contain CategoricalDataPoint.
Definition
Namespace:Telerik.Windows.Controls.ChartView
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
public abstract class CategoricalSeries : CategoricalSeriesBase, IChartElementPresenter
Inheritance: objectRadControlBasePresenterBaseChartElementPresenterChartSeriesPointTemplateSeriesCartesianSeriesCategoricalSeriesBaseCategoricalSeries...
Derived Classes:
Implements:
Inherited Members
Constructors
Initializes a new instance of the CategoricalSeries class.
protected CategoricalSeries()
Fields
CombineModeProperty
DependencyProperty
Identifies the CombineMode property.
public static readonly DependencyProperty CombineModeProperty
ValueBindingProperty
DependencyProperty
Identifies the ValueBinding property.
public static readonly DependencyProperty ValueBindingProperty
Properties
Gets or sets the combination mode to be used when data points are plotted.
public ChartSeriesCombineMode CombineMode { get; set; }
Gets the collection of data points associated with the series.
public DataPointCollection<CategoricalDataPoint> DataPoints { get; }
Gets or sets the key that defines in which stack group this series will be included if its CombineMode equals Stack or Stack100.
public object StackGroupKey { get; set; }
Gets or sets the binding that will be used to fill the Value member of the contained data points.
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding ValueBinding { get; set; }
Methods
When overridden in a derived class, this method returns the function used to calculate the aggregate values for the Value property.
protected virtual ChartAggregateFunction GetValueAggregateFunction()