Class RangeDataPoint
A High-Low data point.
Inheritance
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class RangeDataPoint : CategoricalDataPointBase, IDisposable, INotifyPropertyChanged
Constructors
RangeDataPoint()
RangeDataPoint(Double, Double)
Initializes a new instance of the RangeDataPoint class.
Declaration
public RangeDataPoint(double high, double low)
Parameters
System.Double
high
The high. |
System.Double
low
The low. |
RangeDataPoint(Double, Double, Object)
Initializes a new instance of the RangeDataPoint class.
Declaration
public RangeDataPoint(double high, double low, object category)
Parameters
System.Double
high
The high. |
System.Double
low
The low. |
System.Object
category
The category. |
Properties
High
Gets or sets the high associated with the point.
Declaration
public double High { get; set; }
Property Value
System.Double
|
IsInPlotRange
Determines whether the data point may be plotted correctly.
Declaration
public override bool IsInPlotRange { get; }
Property Value
System.Boolean
|
Overrides
Low
Gets or sets the low associated with the point.
Declaration
public double Low { get; set; }
Property Value
System.Double
|