Interface IHlDataSeriesValues<TX,TY>
Defines the interface to a HL DataSeries values which contains columns of X-Values and Y-Values, High-Values and Low-Values. See Also: com.scichart.charting.visuals.renderableSeries.FastFixedErrorBarsRenderableSeries, com.scichart.charting.visuals.renderableSeries.FastErrorBarsRenderableSeries, com.scichart.charting.visuals.renderableSeries.HlRenderableSeriesBase
Implements
com.scichart.charting.model.dataSeries.IXyDataSeriesValues<TX,TY>
Namespace:
Assembly: .dll
Syntax
public interface IHlDataSeriesValues<TX,TY> extends dataSeries.IXyDataSeriesValues<TX,TY>
Type Parameters
| Name | Description |
|---|---|
| TX | |
| TY |
Methods
getHighValues()
Gets the High Values of this series
Declaration
public abstract ISciList<TY> getHighValues()
Returns
| Type | Description |
|---|---|
| ISciList<TY> | The High Values of this series |
getLowValues()
Gets the Low Values of this series
Declaration
public abstract ISciList<TY> getLowValues()
Returns
| Type | Description |
|---|---|
| ISciList<TY> | The Low Values of this series |
Implements
com.scichart.charting.model.dataSeries.IXyDataSeriesValues<TX,TY>