ClassOhlcSeriesBase
A base class for chart series that plot financial indicators using High, Low, Open, Close values.
Definition
Namespace:Telerik.UI.Xaml.Controls.Chart
Assembly:Telerik.WinUI.Controls.dll
Syntax:
public abstract class OhlcSeriesBase : CartesianSeries, IChartSeries, IChartElementPresenter, IElementPresenter
Inheritance: objectRadControlPresenterBaseChartElementPresenterChartSeriesPointTemplateSeriesCartesianSeriesOhlcSeriesBase
Derived Classes:
Implements:
Inherited Members
Constructors
OhlcSeriesBase()
Initializes a new instance of the OhlcSeriesBase class.
Declaration
protected OhlcSeriesBase()
Fields
CategoryBindingProperty
Identifies the CategoryBinding property.
Declaration
public static readonly DependencyProperty CategoryBindingProperty
Field Value
DependencyProperty
CloseBindingProperty
Identifies the CloseBinding property.
Declaration
public static readonly DependencyProperty CloseBindingProperty
Field Value
DependencyProperty
HighBindingProperty
Identifies the HighBinding property.
Declaration
public static readonly DependencyProperty HighBindingProperty
Field Value
DependencyProperty
LowBindingProperty
Identifies the LowBinding property.
Declaration
public static readonly DependencyProperty LowBindingProperty
Field Value
DependencyProperty
OpenBindingProperty
Identifies the OpenBinding property.
Declaration
public static readonly DependencyProperty OpenBindingProperty
Field Value
DependencyProperty
Properties
CategoryBinding
Gets or sets the binding that will be used to fill the Category member of the contained data points.
Declaration
public DataPointBinding CategoryBinding { get; set; }
Property Value
CloseBinding
Gets or sets the binding that will be used to fill the Close member of the contained data points.
Declaration
public DataPointBinding CloseBinding { get; set; }
Property Value
DataPoints
Gets the collection of data points associated with the series.
Declaration
public DataPointCollection<OhlcDataPoint> DataPoints { get; }
Property Value
HighBinding
Gets or sets the binding that will be used to fill the High member of the contained data points.
Declaration
public DataPointBinding HighBinding { get; set; }
Property Value
LowBinding
Gets or sets the binding that will be used to fill the Low member of the contained data points.
Declaration
public DataPointBinding LowBinding { get; set; }
Property Value
OpenBinding
Gets or sets the binding that will be used to fill the Open member of the contained data points.
Declaration
public DataPointBinding OpenBinding { get; set; }
Property Value