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

A base class for chart series that plot financial indicators using High, Low, Open, Close values.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public abstract class OhlcSeriesBase : CategoricalSeriesBase, IChartElementPresenter

Inheritance: objectRadControlBasePresenterBaseChartElementPresenterChartSeriesPointTemplateSeriesCartesianSeriesCategoricalSeriesBaseOhlcSeriesBase...

Derived Classes: CandlestickSeriesOhlcSeries

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...

Constructors

Initializes a new instance of the OhlcSeriesBase class.

C#
protected OhlcSeriesBase()

Fields

CloseBindingProperty

DependencyProperty

Identifies the CloseBinding property.

C#
public static readonly DependencyProperty CloseBindingProperty

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

OpenBindingProperty

DependencyProperty

Identifies the OpenBinding property.

C#
public static readonly DependencyProperty OpenBindingProperty

Properties

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

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

Gets the collection of data points associated with the series.

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

Gets or sets the binding that will be used to fill the High 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 Low member of the contained data points.

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

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

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

Methods

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

C#
protected virtual ChartAggregateFunction GetCloseAggregateFunction()
Returns:

ChartAggregateFunction

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

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

C#
protected virtual ChartAggregateFunction GetOpenAggregateFunction()
Returns:

ChartAggregateFunction