XyzPointSeries

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 XyzPointSeries specifically is used when resampling and rendering points for an XyzDataSeries any other series-type which requires one X-value, Y-value and Z-value

Inherits: GenericPointSeriesBase<XyySeriesPoint>

Constructors

XyzPointSeries
public XyzPointSeries(IPointSeries yPoints, IPointSeries zPoints)
xyzPointSeries = XyzPointSeries(yPoints, zPoints)

Initializes a new instance of the XyzPointSeries class.

yPoints
The y points.
zPoints
The z points.

Properties

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

Gets the number of IPoint points that this series contains

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

Gets the IPoint at the specified index.

index
The index.
YPoints
public IPointSeries YPoints { get; }
value = xyzPointSeries.YPoints

Gets the Y points.

ZPoints
public IPointSeries ZPoints { get; }
value = xyzPointSeries.ZPoints

Gets the y1 points.

Methods

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

Gets the min, max range in the Y-Direction

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