Search Results for

    Show / Hide Table of Contents

    Interface IXyyDataSeries<TX,TY>

    Defines the interface to an Xyy DataSeries, a series containing X, Y and Y1 data-points. See Also: com.scichart.charting.visuals.renderableSeries.XyyRenderableSeriesBase, com.scichart.charting.visuals.renderableSeries.FastBandRenderableSeries

    Implements
    com.scichart.charting.model.dataSeries.IXyyDataSeriesValues<TX,TY>
    com.scichart.charting.model.dataSeries.IXDataSeries<TX,TY>
    Namespace:
    Assembly: .dll
    Syntax
    public interface IXyyDataSeries<TX,TY> extends dataSeries.IXyyDataSeriesValues<TX,TY>, dataSeries.IXDataSeries<TX,TY>
    Type Parameters
    Name Description
    TX
    TY

    Methods

    append(TX xValue, TY yValue, TY y1Value)

    Appends X, Y and Y1 value to this series

    Declaration
    public abstract void append(TX xValue, TY yValue, TY y1Value)
    Parameters
    Type Name Description
    TX xValue

    The X value

    TY yValue

    The Y value

    TY y1Value

    The Y1 value

    append(TX[] xValues, TY[] yValues, TY[] y1Values)

    Appends X, Y and Y1 values to this series

    Declaration
    public abstract void append(TX[] xValues, TY[] yValues, TY[] y1Values)
    Parameters
    Type Name Description
    TX[] xValues

    The X values

    TY[] yValues

    The Y values

    TY[] y1Values

    The Y1 values

    append(IValues<TX> xValues, IValues<TY> yValues, IValues<TY> y1Values)

    Appends X, Y and Y1 values to this series

    Declaration
    public abstract void append(IValues<TX> xValues, IValues<TY> yValues, IValues<TY> y1Values)
    Parameters
    Type Name Description
    IValues<TX> xValues

    The X values

    IValues<TY> yValues

    The Y values

    IValues<TY> y1Values

    The Y1 values

    append(Iterable<TX> xValues, Iterable<TY> yValues, Iterable<TY> y1Values)

    Appends X, Y and Y1 values to this series

    Declaration
    public abstract void append(Iterable<TX> xValues, Iterable<TY> yValues, Iterable<TY> y1Values)
    Parameters
    Type Name Description
    Iterable<TX> xValues

    The X values

    Iterable<TY> yValues

    The Y values

    Iterable<TY> y1Values

    The Y1 values

    insert(int index, TX x, TY y, TY y1)

    Inserts X, Y and Y1 value at specified location

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

    The index to insert point at

    TX x

    The X value

    TY y

    The Y value

    TY y1

    The Y1 value

    insertRange(int startIndex, TX[] xValues, TY[] yValues, TY[] y1Values)

    Inserts X, Y and Y1 values at specified location

    Declaration
    public abstract void insertRange(int startIndex, TX[] xValues, TY[] yValues, TY[] y1Values)
    Parameters
    Type Name Description
    int startIndex

    The index to insert point at

    TX[] xValues

    The X values

    TY[] yValues

    The Y values

    TY[] y1Values

    The Y1 values

    insertRange(int startIndex, IValues<TX> xValues, IValues<TY> yValues, IValues<TY> y1Values)

    Inserts X, Y and Y1 values at specified location

    Declaration
    public abstract void insertRange(int startIndex, IValues<TX> xValues, IValues<TY> yValues, IValues<TY> y1Values)
    Parameters
    Type Name Description
    int startIndex

    The index to insert point at

    IValues<TX> xValues

    The X values

    IValues<TY> yValues

    The Y values

    IValues<TY> y1Values

    The Y1 values

    insertRange(int startIndex, Iterable<TX> xValues, Iterable<TY> yValues, Iterable<TY> y1Values)

    Inserts X, Y and Y1 values at specified location

    Declaration
    public abstract void insertRange(int startIndex, Iterable<TX> xValues, Iterable<TY> yValues, Iterable<TY> y1Values)
    Parameters
    Type Name Description
    int startIndex

    The index to insert point at

    Iterable<TX> xValues

    The X values

    Iterable<TY> yValues

    The Y values

    Iterable<TY> y1Values

    The Y1 values

    updateRangeXAt(int index, TX[] xValues)

    Updates X values at specified location

    Declaration
    public abstract void updateRangeXAt(int index, TX[] xValues)
    Parameters
    Type Name Description
    int index

    The index of point to update

    TX[] xValues

    The X values

    updateRangeXAt(int index, IValues<TX> xValues)

    Updates X values at specified location

    Declaration
    public abstract void updateRangeXAt(int index, IValues<TX> xValues)
    Parameters
    Type Name Description
    int index

    The index of point to update

    IValues<TX> xValues

    The X values

    updateRangeXAt(int index, Iterable<TX> xValues)

    Updates X values at specified location

    Declaration
    public abstract void updateRangeXAt(int index, Iterable<TX> xValues)
    Parameters
    Type Name Description
    int index

    The index of point to update

    Iterable<TX> xValues

    The X values

    updateRangeXyy1At(int index, TX[] xValues, TY[] yValues, TY[] y1Values)

    Updates X, Y and Y1 values at specified location

    Declaration
    public abstract void updateRangeXyy1At(int index, TX[] xValues, TY[] yValues, TY[] y1Values)
    Parameters
    Type Name Description
    int index

    The index of point to update

    TX[] xValues

    The X values

    TY[] yValues

    The Y values

    TY[] y1Values

    The Y1 values

    updateRangeXyy1At(int index, IValues<TX> xValues, IValues<TY> yValues, IValues<TY> y1Values)

    Updates X, Y and Y1 values at specified location

    Declaration
    public abstract void updateRangeXyy1At(int index, IValues<TX> xValues, IValues<TY> yValues, IValues<TY> y1Values)
    Parameters
    Type Name Description
    int index

    The index of point to update

    IValues<TX> xValues

    The X values

    IValues<TY> yValues

    The Y values

    IValues<TY> y1Values

    The Y1 values

    updateRangeXyy1At(int index, Iterable<TX> xValues, Iterable<TY> yValues, Iterable<TY> y1Values)

    Updates X, Y and Y1 values at specified location

    Declaration
    public abstract void updateRangeXyy1At(int index, Iterable<TX> xValues, Iterable<TY> yValues, Iterable<TY> y1Values)
    Parameters
    Type Name Description
    int index

    The index of point to update

    Iterable<TX> xValues

    The X values

    Iterable<TY> yValues

    The Y values

    Iterable<TY> y1Values

    The Y1 values

    updateRangeY1At(int index, TY[] y1Values)

    Updates Y1 values at specified location

    Declaration
    public abstract void updateRangeY1At(int index, TY[] y1Values)
    Parameters
    Type Name Description
    int index

    The index of point to update

    TY[] y1Values

    The Y1 values

    updateRangeY1At(int index, IValues<TY> y1Values)

    Updates Y1 values at specified location

    Declaration
    public abstract void updateRangeY1At(int index, IValues<TY> y1Values)
    Parameters
    Type Name Description
    int index

    The index of point to update

    IValues<TY> y1Values

    The Y1 values

    updateRangeY1At(int index, Iterable<TY> y1Values)

    Updates Y1 values at specified location

    Declaration
    public abstract void updateRangeY1At(int index, Iterable<TY> y1Values)
    Parameters
    Type Name Description
    int index

    The index of point to update

    Iterable<TY> y1Values

    The Y1 values

    updateRangeYAt(int index, TY[] yValues)

    Updates Y values at specified location

    Declaration
    public abstract void updateRangeYAt(int index, TY[] yValues)
    Parameters
    Type Name Description
    int index

    The index of point to update

    TY[] yValues

    The Y values

    updateRangeYAt(int index, IValues<TY> yValues)

    Updates Y values at specified location

    Declaration
    public abstract void updateRangeYAt(int index, IValues<TY> yValues)
    Parameters
    Type Name Description
    int index

    The index of point to update

    IValues<TY> yValues

    The Y values

    updateRangeYAt(int index, Iterable<TY> yValues)

    Updates Y values at specified location

    Declaration
    public abstract void updateRangeYAt(int index, Iterable<TY> yValues)
    Parameters
    Type Name Description
    int index

    The index of point to update

    Iterable<TY> yValues

    The Y values

    updateXAt(int index, TX xValue)

    Updates X value at specified location

    Declaration
    public abstract void updateXAt(int index, TX xValue)
    Parameters
    Type Name Description
    int index

    The index of point to update

    TX xValue

    The X value

    updateXyy1At(int index, TX xValue, TY yValue, TY y1Value)

    Updates X, Y and Y1 value at specified location

    Declaration
    public abstract void updateXyy1At(int index, TX xValue, TY yValue, TY y1Value)
    Parameters
    Type Name Description
    int index

    The index of point to update

    TX xValue

    The X value

    TY yValue

    The Y value

    TY y1Value

    The Y1 value

    updateY1At(int index, TY y1Value)

    Updates Y1 value at specified location

    Declaration
    public abstract void updateY1At(int index, TY y1Value)
    Parameters
    Type Name Description
    int index

    The index of point to update

    TY y1Value

    The Y1 value

    updateYAt(int index, TY yValue)

    Updates Y value at specified location

    Declaration
    public abstract void updateYAt(int index, TY yValue)
    Parameters
    Type Name Description
    int index

    The index of point to update

    TY yValue

    The Y value

    Implements

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