IPointSeries

StockSharp.Xaml.Charting.Model.DataSeries

Defines the interface to a collection of IPoint, a subset of X,Y data used to render points to the screen

Properties

Count
public int Count { get; }
value = iPointSeries.Count

Gets the count of the PointSeries

Item
public IPoint Item { get; }
value = iPointSeries.Item

Gets the IPoint at the specified index, which merges the X,Y and higher order values into a single point

XValues
public IUltraList<double> XValues { get; }
value = iPointSeries.XValues

Gets the Raw X-Values for the PointSeries

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

Gets the Raw Y-Values for the PointSeries

Methods

GetYRange
public DoubleRange GetYRange()
result = iPointSeries.GetYRange()

Gets the min, max range in the Y-Direction

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