HlcPointSeries
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 HlcPointSeries specifically is used when resampling and rendering points for Error Bars and HLC charts
Inherits: GenericPointSeriesBase<HlcSeriesPoint>
Constructors
HlcPointSeries
public HlcPointSeries(IPointSeries yPoints, IPointSeries yErrorHighPoints, IPointSeries yErrorLowPoints)
hlcPointSeries = HlcPointSeries(yPoints, yErrorHighPoints, yErrorLowPoints)
Initializes a new instance of the HlcPointSeries class.
- yPoints
- The y points.
- yErrorHighPoints
- The y error high points.
- yErrorLowPoints
- The y error low points.
Properties
Count
public override int Count { get; }
value = hlcPointSeries.Count
Gets the number of IPoint points that this series contains
Item
public override IPoint Item { get; }
value = hlcPointSeries.Item
Gets the IPoint at the specified index.
- index
- The index.
Methods
GetYRange
public override DoubleRange GetYRange()
result = hlcPointSeries.GetYRange()
Gets the min, max range in the Y-Direction
Returns: A DoubleRange defining the min, max in the Y-direction