Search Results for

    Show / Hide Table of Contents

    Interface IHlDataSeries<TX,TY>

    Defines the interface to a HL DataSeries, 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.IHlDataSeriesValues<TX,TY>
    com.scichart.charting.model.dataSeries.IXDataSeries<TX,TY>
    Namespace:
    Assembly: .dll
    Syntax
    public interface IHlDataSeries<TX,TY> extends dataSeries.IHlDataSeriesValues<TX,TY>, dataSeries.IXDataSeries<TX,TY>
    Type Parameters
    Name Description
    TX
    TY

    Methods

    append(TX x, TY y, TY high, TY low)

    Appends the X, Y, High and Low point to the series.

    Declaration
    public abstract void append(TX x, TY y, TY high, TY low)
    Parameters
    Type Name Description
    TX x

    The X value

    TY y

    The Y value

    TY high

    The high value

    TY low

    The low value

    append(TX[] x, TY[] y, TY[] high, TY[] low)

    Appends an X, Y, High and Low points to the series.

    Declaration
    public abstract void append(TX[] x, TY[] y, TY[] high, TY[] low)
    Parameters
    Type Name Description
    TX[] x

    The X values

    TY[] y

    The Y values

    TY[] high

    The high values

    TY[] low

    The low values

    append(IValues<TX> x, IValues<TY> y, IValues<TY> high, IValues<TY> low)

    Appends the X, Y, High and Low points to the series.

    Declaration
    public abstract void append(IValues<TX> x, IValues<TY> y, IValues<TY> high, IValues<TY> low)
    Parameters
    Type Name Description
    IValues<TX> x

    The X values

    IValues<TY> y

    The Y values

    IValues<TY> high

    The high values

    IValues<TY> low

    The low values

    append(Iterable<TX> x, Iterable<TY> y, Iterable<TY> high, Iterable<TY> low)

    Appends the X, Y, High and Low points to the series.

    Declaration
    public abstract void append(Iterable<TX> x, Iterable<TY> y, Iterable<TY> high, Iterable<TY> low)
    Parameters
    Type Name Description
    Iterable<TX> x

    The X values

    Iterable<TY> y

    The Y values

    Iterable<TY> high

    The high values

    Iterable<TY> low

    The low values

    insert(int index, TX x, TY y, TY high, TY low)

    Inserts the X and Y, High and Low point to the series at specified index.

    Declaration
    public abstract void insert(int index, TX x, TY y, TY high, TY low)
    Parameters
    Type Name Description
    int index

    The index

    TX x

    The X value

    TY y

    The Y value

    TY high

    The high value

    TY low

    The low value

    insertRange(int index, TX[] x, TY[] y, TY[] high, TY[] low)

    Inserts the X and Y, High and Low points to the series at specified index.

    Declaration
    public abstract void insertRange(int index, TX[] x, TY[] y, TY[] high, TY[] low)
    Parameters
    Type Name Description
    int index

    The index

    TX[] x

    The X values

    TY[] y

    The Y values

    TY[] high

    The high values

    TY[] low

    The low values

    insertRange(int index, IValues<TX> x, IValues<TY> y, IValues<TY> high, IValues<TY> low)

    Inserts the X and Y, High and Low points to the series at specified index.

    Declaration
    public abstract void insertRange(int index, IValues<TX> x, IValues<TY> y, IValues<TY> high, IValues<TY> low)
    Parameters
    Type Name Description
    int index

    The index

    IValues<TX> x

    The X values

    IValues<TY> y

    The Y values

    IValues<TY> high

    The high values

    IValues<TY> low

    The low values

    insertRange(int index, Iterable<TX> x, Iterable<TY> y, Iterable<TY> high, Iterable<TY> low)

    Inserts the X and Y, High and Low points to the series at specified index.

    Declaration
    public abstract void insertRange(int index, Iterable<TX> x, Iterable<TY> y, Iterable<TY> high, Iterable<TY> low)
    Parameters
    Type Name Description
    int index

    The index

    Iterable<TX> x

    The X values

    Iterable<TY> y

    The Y values

    Iterable<TY> high

    The high values

    Iterable<TY> low

    The low values

    update(int index, TY y, TY high, TY low)

    Updates an Y, High and Low point to the series at specified index.

    Declaration
    public abstract void update(int index, TY y, TY high, TY low)
    Parameters
    Type Name Description
    int index

    The index

    TY y

    The Y value

    TY high

    The high value

    TY low

    The low value

    update(int index, TY[] y, TY[] high, TY[] low)

    Updates the Y, High and Low points to the series at specified index.

    Declaration
    public abstract void update(int index, TY[] y, TY[] high, TY[] low)
    Parameters
    Type Name Description
    int index

    The index

    TY[] y

    The Y values

    TY[] high

    The high values

    TY[] low

    The low values

    update(int index, IValues<TY> y, IValues<TY> high, IValues<TY> low)

    Updates the Y, High and Low points to the series at specified index.

    Declaration
    public abstract void update(int index, IValues<TY> y, IValues<TY> high, IValues<TY> low)
    Parameters
    Type Name Description
    int index

    The index

    IValues<TY> y

    The Y values

    IValues<TY> high

    The high values

    IValues<TY> low

    The low values

    update(int index, Iterable<TY> y, Iterable<TY> high, Iterable<TY> low)

    Updates the Y, High and Low points to the series at specified index.

    Declaration
    public abstract void update(int index, Iterable<TY> y, Iterable<TY> high, Iterable<TY> low)
    Parameters
    Type Name Description
    int index

    The index

    Iterable<TY> y

    The Y values

    Iterable<TY> high

    The high values

    Iterable<TY> low

    The low values

    Implements

    com.scichart.charting.model.dataSeries.IHlDataSeriesValues<TX,TY>
    com.scichart.charting.model.dataSeries.IXDataSeries<TX,TY>
    Back to top © 2011-2025 SciChart. All rights reserved. | sitemap.xml