Class
ScatterRangeDataPoint

A vertical and horizontal high-low data point.

Definition

Constructors

ScatterRangeDataPoint()

Initializes a new instance of the ScatterRangeDataPoint class.

Declaration

cs-api-definition
public ScatterRangeDataPoint()

Properties

HorizontalHigh

Gets or sets the horizontal end value associated with the point.

Declaration

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

Property Value

double

HorizontalLow

Gets or sets the horizontal start value associated with the point.

Declaration

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

Property Value

double

IsInPlotRange

Gets a value indicating whether the data point may be plotted correctly.

Declaration

cs-api-definition
public override bool IsInPlotRange { get; }

Property Value

bool

Overrides DataPoint.IsInPlotRange

VerticalHigh

Gets or sets the vertical end value associated with the point.

Declaration

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

Property Value

double

VerticalLow

Gets or sets the vertical start value associated with the point.

Declaration

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

Property Value

double