TX
- The type of X-DataTY
- The type of Y-Datapublic interface IXyDataSeries<TX extends java.lang.Comparable<TX>,TY extends java.lang.Comparable<TY>> extends IXyDataSeriesValues<TX,TY>, IXDataSeries<TX,TY>
Modifier and Type | Method and Description |
---|---|
void |
append(java.lang.Iterable<TX> xValues,
java.lang.Iterable<TY> yValues)
Appends X and Y values to this series
|
void |
append(com.scichart.core.model.IValues<TX> xValues,
com.scichart.core.model.IValues<TY> yValues)
Appends X and Y values to this series
|
void |
append(TX[] xValues,
TY[] yValues)
Appends X and Y values to this series
|
void |
append(TX x,
TY y)
Appends X and Y value to this series
|
void |
insert(int index,
TX x,
TY y)
Inserts X and Y value at specified location
|
void |
insertRange(int startIndex,
java.lang.Iterable<TX> xValues,
java.lang.Iterable<TY> yValues)
Inserts X and Y values at specified location
|
void |
insertRange(int startIndex,
com.scichart.core.model.IValues<TX> xValues,
com.scichart.core.model.IValues<TY> yValues)
Inserts X and Y values at specified location
|
void |
insertRange(int startIndex,
TX[] xValues,
TY[] yValues)
Inserts X and Y values at specified location
|
void |
updateRangeXAt(int index,
java.lang.Iterable<TX> xValues)
Updates X values at specified location
|
void |
updateRangeXAt(int index,
com.scichart.core.model.IValues<TX> xValues)
Updates X values at specified location
|
void |
updateRangeXAt(int index,
TX[] xValues)
Updates X values at specified location
|
void |
updateRangeXyAt(int index,
java.lang.Iterable<TX> xValues,
java.lang.Iterable<TY> yValues)
Updates X and Y values at specified location
|
void |
updateRangeXyAt(int index,
com.scichart.core.model.IValues<TX> xValues,
com.scichart.core.model.IValues<TY> yValues)
Updates X and Y values at specified location
|
void |
updateRangeXyAt(int index,
TX[] xValues,
TY[] yValues)
Updates X and Y values at specified location
|
void |
updateRangeYAt(int index,
java.lang.Iterable<TY> yValues)
Updates Y values at specified location
|
void |
updateRangeYAt(int index,
com.scichart.core.model.IValues<TY> yValues)
Updates Y values at specified location
|
void |
updateRangeYAt(int index,
TY[] yValues)
Updates Y values at specified location
|
void |
updateXAt(int index,
TX x)
Updates X value at specified location
|
void |
updateXyAt(int index,
TX x,
TY y)
Updates X and Y value at specified location
|
void |
updateYAt(int index,
TY y)
Updates Y value at specified location
|
getYValues
removeAt, removeRange
getXValues
getAcceptsUnsortedData, getDataSeriesType, getFifoCapacity, getIndicesXRange, getIndicesYRange, getLock, getWindowedYRange, getWindowedYRange, getXMath, getXMax, getXMin, getXRange, getXType, getYMath, getYMax, getYMin, getYRange, getYType, isFifo, setAcceptsUnsortedData, setFifoCapacity
addObserver, clear, clear, getCount, getHasValues, getSeriesName, removeObserver, setSeriesName
void append(TX x, TY y)
x
- The X valuey
- The Y valuevoid append(java.lang.Iterable<TX> xValues, java.lang.Iterable<TY> yValues)
xValues
- The X valuesyValues
- The Y valuesvoid append(TX[] xValues, TY[] yValues)
xValues
- The X valuesyValues
- The Y valuesvoid append(com.scichart.core.model.IValues<TX> xValues, com.scichart.core.model.IValues<TY> yValues)
xValues
- The X valuesyValues
- The Y valuesvoid updateXyAt(int index, TX x, TY y)
index
- The index of point to updatex
- The X valuey
- The Y valuevoid updateXAt(int index, TX x)
index
- The index of point to updatex
- The X valuevoid updateYAt(int index, TY y)
index
- The index of point to updatey
- The Y valuevoid updateRangeXyAt(int index, java.lang.Iterable<TX> xValues, java.lang.Iterable<TY> yValues)
index
- The index of point to start update fromxValues
- The X valuesyValues
- The Y valuesvoid updateRangeXAt(int index, java.lang.Iterable<TX> xValues)
index
- The index of points to start update fromxValues
- The X valuevoid updateRangeYAt(int index, java.lang.Iterable<TY> yValues)
index
- The index of points to start update fromyValues
- The Y valuevoid updateRangeXyAt(int index, TX[] xValues, TY[] yValues)
index
- The index of point to start update fromxValues
- The X valuesyValues
- The Y valuesvoid updateRangeXAt(int index, TX[] xValues)
index
- The index of points to start update fromxValues
- The X valuevoid updateRangeYAt(int index, TY[] yValues)
index
- The index of points to start update fromyValues
- The Y valuevoid updateRangeXyAt(int index, com.scichart.core.model.IValues<TX> xValues, com.scichart.core.model.IValues<TY> yValues)
index
- The index of point to start update fromxValues
- The X valuesyValues
- The Y valuesvoid updateRangeXAt(int index, com.scichart.core.model.IValues<TX> xValues)
index
- The index of points to start update fromxValues
- The X valuevoid updateRangeYAt(int index, com.scichart.core.model.IValues<TY> yValues)
index
- The index of points to start update fromyValues
- The Y valuevoid insert(int index, TX x, TY y)
index
- The index to insert point atx
- The X valuey
- The Y valuevoid insertRange(int startIndex, java.lang.Iterable<TX> xValues, java.lang.Iterable<TY> yValues)
startIndex
- The index to insert points atxValues
- The X valuesyValues
- The Y valuesvoid insertRange(int startIndex, TX[] xValues, TY[] yValues)
startIndex
- The index to insert points atxValues
- The X valuesyValues
- The Y values