TX
- The type of X-DataTY
- The type of Y-Datapublic interface IHlDataSeries<TX extends java.lang.Comparable<TX>,TY extends java.lang.Comparable<TY>> extends IHlDataSeriesValues<TX,TY>, IXDataSeries<TX,TY>
Modifier and Type | Method and Description |
---|---|
void |
append(java.lang.Iterable<TX> x,
java.lang.Iterable<TY> y,
java.lang.Iterable<TY> high,
java.lang.Iterable<TY> low)
Appends the X, Y, High and Low points to the series.
|
void |
append(com.scichart.core.model.IValues<TX> x,
com.scichart.core.model.IValues<TY> y,
com.scichart.core.model.IValues<TY> high,
com.scichart.core.model.IValues<TY> low)
Appends the X, Y, High and Low points to the series.
|
void |
append(TX[] x,
TY[] y,
TY[] high,
TY[] low)
Appends an X, Y, High and Low points to the series.
|
void |
append(TX x,
TY y,
TY high,
TY low)
Appends the X, Y, High and Low point to the series.
|
void |
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.
|
void |
insertRange(int index,
java.lang.Iterable<TX> x,
java.lang.Iterable<TY> y,
java.lang.Iterable<TY> high,
java.lang.Iterable<TY> low)
Inserts the X and Y, High and Low points to the series at specified index.
|
void |
insertRange(int index,
com.scichart.core.model.IValues<TX> x,
com.scichart.core.model.IValues<TY> y,
com.scichart.core.model.IValues<TY> high,
com.scichart.core.model.IValues<TY> low)
Inserts the X and Y, High and Low points to the series at specified index.
|
void |
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.
|
void |
update(int index,
java.lang.Iterable<TY> y,
java.lang.Iterable<TY> high,
java.lang.Iterable<TY> low)
Updates the Y, High and Low points to the series at specified index.
|
void |
update(int index,
com.scichart.core.model.IValues<TY> y,
com.scichart.core.model.IValues<TY> high,
com.scichart.core.model.IValues<TY> low)
Updates the Y, High and Low points to the series at specified index.
|
void |
update(int index,
TY[] y,
TY[] high,
TY[] low)
Updates the Y, High and Low points to the series at specified index.
|
void |
update(int index,
TY y,
TY high,
TY low)
Updates an Y, High and Low point to the series at specified index.
|
getHighValues, getLowValues
getYValues
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
isDataEvenlySpaced, isDataSortedAscending
removeAt, removeRange
void append(TX x, TY y, TY high, TY low)
x
- The X valuey
- The Y valuehigh
- The high valuelow
- The low valuevoid append(java.lang.Iterable<TX> x, java.lang.Iterable<TY> y, java.lang.Iterable<TY> high, java.lang.Iterable<TY> low)
x
- The X valuesy
- The Y valueshigh
- The high valueslow
- The low valuesvoid append(TX[] x, TY[] y, TY[] high, TY[] low)
x
- The X valuesy
- The Y valueshigh
- The high valueslow
- The low valuesvoid append(com.scichart.core.model.IValues<TX> x, com.scichart.core.model.IValues<TY> y, com.scichart.core.model.IValues<TY> high, com.scichart.core.model.IValues<TY> low)
x
- The X valuesy
- The Y valueshigh
- The high valueslow
- The low valuesvoid update(int index, TY y, TY high, TY low)
index
- The indexy
- The Y valuehigh
- The high valuelow
- The low valuevoid update(int index, java.lang.Iterable<TY> y, java.lang.Iterable<TY> high, java.lang.Iterable<TY> low)
index
- The indexy
- The Y valueshigh
- The high valueslow
- The low valuesvoid update(int index, TY[] y, TY[] high, TY[] low)
index
- The indexy
- The Y valueshigh
- The high valueslow
- The low valuesvoid update(int index, com.scichart.core.model.IValues<TY> y, com.scichart.core.model.IValues<TY> high, com.scichart.core.model.IValues<TY> low)
index
- The indexy
- The Y valueshigh
- The high valueslow
- The low valuesvoid insert(int index, TX x, TY y, TY high, TY low)
index
- The indexx
- The X valuey
- The Y valuehigh
- The high valuelow
- The low valuevoid insertRange(int index, java.lang.Iterable<TX> x, java.lang.Iterable<TY> y, java.lang.Iterable<TY> high, java.lang.Iterable<TY> low)
index
- The indexx
- The X valuesy
- The Y valueshigh
- The high valueslow
- The low valuesvoid insertRange(int index, TX[] x, TY[] y, TY[] high, TY[] low)
index
- The indexx
- The X valuesy
- The Y valueshigh
- The high valueslow
- The low valuesvoid insertRange(int index, com.scichart.core.model.IValues<TX> x, com.scichart.core.model.IValues<TY> y, com.scichart.core.model.IValues<TY> high, com.scichart.core.model.IValues<TY> low)
index
- The indexx
- The X valuesy
- The Y valueshigh
- The high valueslow
- The low values