New to Telerik UI for WPFStart a free 30-day trial

A base class for chart range series.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public abstract class RangeSeriesBase : CategoricalSeriesBase, IChartElementPresenter

Inheritance: objectRadControlBasePresenterBaseChartElementPresenterChartSeriesPointTemplateSeriesCartesianSeriesCategoricalSeriesBaseRangeSeriesBase...

Derived Classes: ErrorBarSeriesRangeBarSeriesRangeSeries

Implements: IChartElementPresenter

Inherited Members CategoricalSeriesBase.CategoryBindingPropertyCategoricalSeriesBase.GetCategoryAggregateFunction()CategoricalSeriesBase.CategoryBindingCartesianSeries.HorizontalAxisPropertyCartesianSeries.VerticalAxisPropertyCartesianSeries.OnAttached()CartesianSeries.OnDetached(RadChartBase)CartesianSeries.OnMouseEnter(MouseEventArgs)CartesianSeries.OnMouseLeave(MouseEventArgs)CartesianSeries.HorizontalAxisCartesianSeries.VerticalAxisPointTemplateSeries.PointTemplatePropertyPointTemplateSeries.PointTemplateSelectorPropertyPointTemplateSeries.DefaultVisualStylePropertyPointTemplateSeries.DefaultVisualStyleSelectorPropertyPointTemplateSeries.RenderOptionsPropertyPointTemplateSeries.OnLoaded(object, RoutedEventArgs)PointTemplateSeries.OnPlayPointAnimations(bool)PointTemplateSeries.OnApplyTemplate()PointTemplateSeries.GetDataPointVisual(DataPoint)PointTemplateSeries.MeasureNodeOverride(ChartNode, object)PointTemplateSeries.OnRenderOptionsChanged(ChartRenderOptions, ChartRenderOptions)PointTemplateSeries.DefaultVisualStylePointTemplateSeries.DefaultVisualStyleSelectorPointTemplateSeries.PointTemplatePointTemplateSeries.PointTemplateSelectorPointTemplateSeries.PointTemplatesPointTemplateSeries.RenderOptionsChartSeries.SeriesAnimationPropertyChartSeries.PointAnimationPropertyChartSeries.IsSelectedPropertyChartSeries.AllowSelectPropertyChartSeries.TrackBallTemplatePropertyChartSeries.TrackBallInfoTemplatePropertyChartSeries.ItemsSourcePropertyChartSeries.ClipToPlotAreaPropertyChartSeries.DisplayNamePropertyChartSeries.TooltipTemplatePropertyChartSeries.LabelConnectorsSettingsPropertyChartSeries.ShowLabelsPropertyChartSeries.PlaySeriesAnimation()ChartSeries.PlayPointAnimations()ChartSeries.OnPlaySeriesAnimation(bool)ChartSeries.HitTest(Rect)ChartSeries.HitTestDataPoints(Rect)ChartSeries.HitTestElements(Rect)ChartSeries.HitTestElementsCore(Rect)ChartSeries.HitTestDataPointsCore(Rect)ChartSeries.OnVisibilityChanged()ChartSeries.GetLabelConnector(ChartSeriesLabelPositionInfo)ChartSeries.GetDataPointLabels(DataPoint)ChartSeries.SeriesAnimationChartSeries.PointAnimationChartSeries.IsSelectedChartSeries.AllowSelectChartSeries.TrackBallTemplateChartSeries.TrackBallInfoTemplateChartSeries.DisplayNameChartSeries.TooltipTemplateChartSeries.ClipToPlotAreaChartSeries.ItemsSourceChartSeries.LabelConnectorsSettingsChartSeries.LabelDefinitionsChartSeries.ShowLabelsChartSeries.SeriesAnimationCompletedChartSeries.PointAnimationsCompletedChartSeries.DataBindingCompleteChartElementPresenter.OnPropertyChanged(DependencyPropertyChangedEventArgs)ChartElementPresenter.ZIndexChartElementPresenter.ChartPresenterBase.InfinitySizePresenterBase.InfinityPointPresenterBase.RefreshNode(ChartNode)PresenterBase.InvalidatePalette()PresenterBase.RefreshNodeCore(ChartNode)PresenterBase.CreateContentPresenter(object, DataTemplate)PresenterBase.OnInitialized(EventArgs)PresenterBase.RenderSurfaceRadControlBase.OnUnloaded(object, RoutedEventArgs)RadControlBase.IsLoadedRadControlBase.IsTemplateApplied...

Fields

HighBindingProperty

DependencyProperty

Identifies the HighBinding property.

C#
public static readonly DependencyProperty HighBindingProperty

LegendSettingsProperty

DependencyProperty

Identifies the LegendSettings dependency property.

C#
public static readonly DependencyProperty LegendSettingsProperty

LowBindingProperty

DependencyProperty

Identifies the LowBinding property.

C#
public static readonly DependencyProperty LowBindingProperty

Properties

Gets the collection of data points associated with the series.

C#
public DataPointCollection<RangeDataPoint> DataPoints { get; }

Gets or sets the binding that will be used to fill the HighBinding member of the contained data points.

C#
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding HighBinding { get; set; }

Gets or sets the legend settings.

C#
public SeriesLegendSettings LegendSettings { get; set; }

Gets or sets the binding that will be used to fill the LowBinding member of the contained data points.

C#
[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.

C#
protected virtual ChartAggregateFunction GetHighAggregateFunction()
Returns:

ChartAggregateFunction

When overridden in a derived class, this method returns the function used to calculate the aggregate values for the Low property.

C#
protected virtual ChartAggregateFunction GetLowAggregateFunction()
Returns:

ChartAggregateFunction