BoxSeriesPoint

StockSharp.Xaml.Charting.Model.DataSeries

A BoxSeriesPoint is an internally used structure which contains transformed points to render Y-values on the RenderSurfaceBase. Used in conjuction with the FastBoxPlotRenderableSeries and BoxPlotDataSeries

Implements: ISeriesPoint<double>, IComparable

Constructors

BoxSeriesPoint
public BoxSeriesPoint(double y, double min, double lower, double upper, double max)
boxSeriesPoint = BoxSeriesPoint(y, min, lower, upper, max)

Initializes a new instance of the BoxSeriesPoint struct.

y
The y value
min
The min.
lower
The lower quartile.
upper
The upper quartile.
max
The max.

Properties

LowerQuartile
public double LowerQuartile { get; private set; }
value = boxSeriesPoint.LowerQuartile
boxSeriesPoint.LowerQuartile = value

Gets the Lower Quartile value of this ISeriesPoint.

Max
public double Max { get; private set; }
value = boxSeriesPoint.Max
boxSeriesPoint.Max = value

Gets the maximum of this ISeriesPoint.

Min
public double Min { get; private set; }
value = boxSeriesPoint.Min
boxSeriesPoint.Min = value

Gets the minimum of this ISeriesPoint.

UpperQuartile
public double UpperQuartile { get; private set; }
value = boxSeriesPoint.UpperQuartile
boxSeriesPoint.UpperQuartile = value

Gets the Upper Quartile value of this ISeriesPoint.

Y
public double Y { get; private set; }
value = boxSeriesPoint.Y
boxSeriesPoint.Y = value

Gets the default Y-value of this ISeriesPoint.

Methods

CompareTo
public int CompareTo(object obj)
result = boxSeriesPoint.CompareTo(obj)

Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.

obj
An object to compare with this instance.

Returns: A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance precedes in the sort order. Zero This instance occurs in the same position in the sort order as .Greater than zero This instance follows in the sort order.