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