A vertical and horizontal high-low data point.
Definition
Namespace:Telerik.Charting
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
C#
public class ScatterRangeDataPoint : DataPoint, INotifyPropertyChanged
Inheritance: objectPropertyBagObjectChartNodeDataPointScatterRangeDataPoint
Implements:
Inherited Members
Constructors
Initializes a new instance of the ScatterRangeDataPoint class.
C#
public ScatterRangeDataPoint()
Properties
Gets or sets the horizontal end value associated with the point.
C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double HorizontalHigh { get; set; }
Gets or sets the horizontal start value associated with the point.
C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double HorizontalLow { get; set; }
Gets a value indicating whether the data point may be plotted correctly.
C#
public override bool IsInPlotRange { get; }
Overrides:
Gets or sets the vertical end value associated with the point.
C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double VerticalHigh { get; set; }
Gets or sets the vertical start value associated with the point.
C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double VerticalLow { get; set; }