GenericPointSeriesBase

StockSharp.Xaml.Charting.Model.DataSeries

A generic abstract base class to store IPoint instances, used as the resampling output of higher-order DataSeries, e.g. XyyPointSeries, XyzPointSeries

Implements: IGenericPointSeries<T>, IPointSeries

Properties

Count
public abstract int Count { get; }
value = genericPointSeriesBase.Count

Gets the number of IPoint points that this series contains

Item
public abstract IPoint Item { get; }
value = genericPointSeriesBase.Item

Gets or sets the IPoint at the specified index.

index
The index.
XValues
public IUltraList<double> XValues { get; }
value = genericPointSeriesBase.XValues

Gets the Raw X-Values for the PointSeries

YPoints
public IPointSeries YPoints { get; }
value = genericPointSeriesBase.YPoints

Gets the y points.

YValues
public IUltraList<double> YValues { get; }
value = genericPointSeriesBase.YValues

Gets the Raw Y-Values for the PointSeries

Methods

GetYRange
public abstract DoubleRange GetYRange()
result = genericPointSeriesBase.GetYRange()

Gets the min, max range in the Y-Direction

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