RangeSeriesBase
A base class for chart range series.
Definition
Namespace:Telerik.Windows.Controls.ChartView
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
public abstract class RangeSeriesBase : CategoricalSeriesBase, IChartElementPresenter
Inheritance: objectRadControlBasePresenterBaseChartElementPresenterChartSeriesPointTemplateSeriesCartesianSeriesCategoricalSeriesBaseRangeSeriesBase...
Derived Classes:
Implements:
Inherited Members
Fields
HighBindingProperty
DependencyProperty
Identifies the HighBinding property.
public static readonly DependencyProperty HighBindingProperty
LegendSettingsProperty
DependencyProperty
Identifies the LegendSettings dependency property.
public static readonly DependencyProperty LegendSettingsProperty
LowBindingProperty
DependencyProperty
Identifies the LowBinding property.
public static readonly DependencyProperty LowBindingProperty
Properties
Gets the collection of data points associated with the series.
public DataPointCollection<RangeDataPoint> DataPoints { get; }
Gets or sets the binding that will be used to fill the HighBinding member of the contained data points.
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding HighBinding { get; set; }
Gets or sets the legend settings.
public SeriesLegendSettings LegendSettings { get; set; }
Gets or sets the binding that will be used to fill the LowBinding member of the contained data points.
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding LowBinding { get; set; }
Methods
When overridden in a derived class, this method returns the function used to calculate the aggregate values for the High property.
protected virtual ChartAggregateFunction GetHighAggregateFunction()
When overridden in a derived class, this method returns the function used to calculate the aggregate values for the Low property.
protected virtual ChartAggregateFunction GetLowAggregateFunction()