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

A vertical and horizontal high-low data point.

Definition

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: DataPoint.IsInPlotRange

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; }