Class
HlcDataPoint

Definition

Namespace:Telerik.Charting

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

cs-api-definition
public class HlcDataPoint : CategoricalDataPointBase, IDisposable, INotifyPropertyChanged

Inheritance: objectDisposableObjectPropertyBagObjectChartNodeDataPointCategoricalDataPointBaseHlcDataPoint

Derived Classes: OhlcDataPoint

Implements: IDisposableINotifyPropertyChanged

Inherited Members CategoricalDataPointBase.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

HlcDataPoint()

Initializes a new instance of the HlcDataPoint class.

Declaration

cs-api-definition
public HlcDataPoint()

HlcDataPoint(double, double, double, object)

Initializes a new instance of the HlcDataPoint class.

Declaration

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

Parameters

high

double

The high.

low

double

The low.

close

double

The close.

category

object

The category.

Properties

Close

Gets or sets the close associated with the point.

Declaration

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

Property Value

double

High

Gets or sets the high associated with the point.

Declaration

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

Property Value

double

IsInPlotRange

Determines whether the data point may be plotted correctly.

Declaration

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

Property Value

bool

Overrides CategoricalDataPointBase.IsInPlotRange

Low

Gets or sets the low associated with the point.

Declaration

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

Property Value

double