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

A High-Low-Open-Close data point.

Definition

Namespace:Telerik.Charting

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

C#
public class OhlcDataPoint : HlcDataPoint, IDisposable, INotifyPropertyChanged

Inheritance: objectDisposableObjectPropertyBagObjectChartNodeDataPointCategoricalDataPointBaseHlcDataPointOhlcDataPoint...

Implements: IDisposableINotifyPropertyChanged

Inherited Members HlcDataPoint.HighHlcDataPoint.LowHlcDataPoint.CloseHlcDataPoint.IsInPlotRangeCategoricalDataPointBase.isInNumericalRangeCategoricalDataPointBase.isInCategoricalRangeCategoricalDataPointBase.CategoryDataPoint.GetBoundValue<T>(int)DataPoint.SetBoundValue(int, object)DataPoint.InitBoundValues()DataPoint.SetDataItem(object)DataPoint.ContainsBoundValue(int)DataPoint.LabelDataPoint.DataItemDataPoint.IsSelectedChartNode.Arrange(RadRect, bool)ChartNode.Invalidate()ChartNode.SetValueCore(int, object)ChartNode.ClearValueCore(int)ChartNode.IsArrangeValidChartNode.NodeStateChartNode.IndexChartNode.CollectionIndexChartNode.IsTreeLoadedChartNode.LayoutSlotChartNode.ParentChartNode.PresenterChartNode.PropertyChangedPropertyBagObject.IsLocalValue(int)PropertyBagObject.GetValue(int)PropertyBagObject.SetValue(int, object)PropertyBagObject.ClearValue(int)PropertyBagObject.GetTypedValue<T>(int, T)PropertyBagObject.DisposeManagedResources()PropertyBagObject.PropertyStoreDisposableObject.Dispose()DisposableObject.DisposeUnmanagedResources()DisposableObject.IsDisposingDisposableObject.IsDisposedDisposableObject.EventsDisposableObject.DisposingDisposableObject.Disposed...

Constructors

Initializes a new instance of the OhlcDataPoint class.

C#
public OhlcDataPoint()

Initializes a new instance of the OhlcDataPoint class.

C#
public OhlcDataPoint(double open, double high, double low, double close, object category)
Parameters:opendouble

The open.

highdouble

The high.

lowdouble

The low.

closedouble

The close.

categoryobject

The category.

Properties

Gets a value indicating whether this instance is falling (Bearish).

C#
[Browsable(false)]
public bool IsFalling { get; }

Gets a value indicating whether this instance is rising (Bullish).

C#
[Browsable(false)]
public bool IsRising { get; }

Gets or sets the open associated with the point.

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double Open { get; set; }