Class
OhlcDataPoint

A High-Low-Open-Close data point.

Definition

Namespace:Telerik.Charting

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

cs-api-definition
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

OhlcDataPoint()

Initializes a new instance of the OhlcDataPoint class.

Declaration

cs-api-definition
public OhlcDataPoint()

OhlcDataPoint(double, double, double, double, object)

Initializes a new instance of the OhlcDataPoint class.

Declaration

cs-api-definition
public OhlcDataPoint(double open, double high, double low, double close, object category)

Parameters

open

double

The open.

high

double

The high.

low

double

The low.

close

double

The close.

category

object

The category.

Properties

IsFalling

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

Declaration

cs-api-definition
[Browsable(false)]
public bool IsFalling { get; }

Property Value

bool

IsRising

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

Declaration

cs-api-definition
[Browsable(false)]
public bool IsRising { get; }

Property Value

bool

Open

Gets or sets the open associated with the point.

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDoubleConverter))]
public double Open { get; set; }

Property Value

double