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

An Open-High-Low-Close data point.

Definition

Constructors

Initializes a new instance of the OhlcDataPoint class.

C#
public OhlcDataPoint()

Properties

Gets or sets the close value associated with the point.

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

Gets or sets the high value associated with the point.

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

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

C#
public bool IsFalling { get; }

Determines whether the data point may be plotted correctly.

C#
public override bool IsInPlotRange { get; }

Overrides: CategoricalDataPointBase.IsInPlotRange

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

C#
public bool IsRising { get; }

Gets or sets the low value associated with the point.

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

Gets or sets the open value associated with the point.

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