XyyPointSeries
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 XyyPointSeries specifically is used when resampling and rendering points for FastBandRenderableSeries, or any other series-type which requires one X-value and two Y-values
Inherits: GenericPointSeriesBase<XyySeriesPoint>
Constructors
XyyPointSeries
public XyyPointSeries(IPointSeries yPoints, IPointSeries y1Points)
xyyPointSeries = XyyPointSeries(yPoints, y1Points)
Initializes a new instance of the XyyPointSeries class.
- yPoints
- The y points.
- y1Points
- The y1 points.
Properties
Count
public override int Count { get; }
value = xyyPointSeries.Count
Gets the number of IPoint points that this series contains
Item
public override IPoint Item { get; }
value = xyyPointSeries.Item
Gets the IPoint at the specified index.
- index
- The index.
Methods
GetYRange
public override DoubleRange GetYRange()
result = xyyPointSeries.GetYRange()
Gets the min, max range in the Y-Direction
Returns: A DoubleRange defining the min, max in the Y-direction