BoxPointSeries

StockSharp.Xaml.Charting.Model.DataSeries

An internal concept - the IPointSeries provides a sequence of ISeriesPoint derived types, which represent resampled data immediately before rendering. The BoxPointSeries specifically is used when resampling and rendering Box Plot points

Inherits: GenericPointSeriesBase<BoxSeriesPoint>

Constructors

BoxPointSeries
public BoxPointSeries(IPointSeries yPoints, IPointSeries minPoints, IPointSeries lowerPoints, IPointSeries upperPoints, IPointSeries maxPoints)
boxPointSeries = BoxPointSeries(yPoints, minPoints, lowerPoints, upperPoints, maxPoints)

Initializes a new instance of the BoxPointSeries class.

yPoints
The resampled y points.
minPoints
The resampled min points.
lowerPoints
The resampled lower quartile points.
upperPoints
The resampled upper quartile points.
maxPoints
The max points.

Properties

Count
public override int Count { get; }
value = boxPointSeries.Count

Gets the number of IPoint points that this series contains

Item
public override IPoint Item { get; }
value = boxPointSeries.Item

Gets the IPoint at the specified index.

index
The index.

Methods

GetYRange
public override DoubleRange GetYRange()
result = boxPointSeries.GetYRange()

Gets the min, max range in the Y-Direction

Returns: A DoubleRange defining the min, max in the Y-direction