TX
- The type of X-DataTY
- The type of Y-DataTZ
- The type of Z-Datapublic interface IXyzDataSeries3D<TX extends java.lang.Comparable<TX>,TY extends java.lang.Comparable<TY>,TZ extends java.lang.Comparable<TZ>> extends IXyzDataSeries3DValues<TX,TY,TZ>
Modifier and Type | Method and Description |
---|---|
void |
append(java.lang.Iterable<TX> xValues,
java.lang.Iterable<TY> yValues,
java.lang.Iterable<TZ> zValues)
Appends X, Y and Z values to this series
|
void |
append(com.scichart.core.model.IValues<TX> xValues,
com.scichart.core.model.IValues<TY> yValues,
com.scichart.core.model.IValues<TZ> zValues)
Appends X, Y and Z values to this series
|
void |
append(TX[] xValues,
TY[] yValues,
TZ[] zValues)
Appends X, Y and Z values to this series
|
void |
append(TX x,
TY y,
TZ z)
Appends X, Y and Z value to this series
|
void |
insert(int index,
TX x,
TY y,
TZ z)
Inserts X, Y and Z value at specified location
|
void |
insertRange(int startIndex,
java.lang.Iterable<TX> xValues,
java.lang.Iterable<TY> yValues,
java.lang.Iterable<TZ> zValues)
Inserts X, Y and Z values at specified location
|
void |
insertRange(int startIndex,
com.scichart.core.model.IValues<TX> xValues,
com.scichart.core.model.IValues<TY> yValues,
com.scichart.core.model.IValues<TZ> zValues)
Inserts X, Y and Z values at specified location
|
void |
insertRange(int startIndex,
TX[] xValues,
TY[] yValues,
TZ[] zValues)
Inserts X, Y and Z values at specified location
|
void |
removeAt(int index)
Removes data points at specified location
|
void |
removeRange(int startIndex,
int count)
Removes the range of data points
|
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 |
updateRangeXyzAt(int index,
java.lang.Iterable<TX> xValues,
java.lang.Iterable<TY> yValues,
java.lang.Iterable<TZ> zValues)
Updates X, Y and Z values at specified location
|
void |
updateRangeXyzAt(int index,
com.scichart.core.model.IValues<TX> xValues,
com.scichart.core.model.IValues<TY> yValues,
com.scichart.core.model.IValues<TZ> zValues)
Updates X, Y and Z values at specified location
|
void |
updateRangeXyzAt(int index,
TX[] xValues,
TY[] yValues,
TZ[] zValues)
Updates X, Y and Z 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 |
updateRangeZAt(int index,
java.lang.Iterable<TZ> zValues)
Updates Z values at specified location
|
void |
updateRangeZAt(int index,
com.scichart.core.model.IValues<TZ> zValues)
Updates Z values at specified location
|
void |
updateRangeZAt(int index,
TZ[] zValues)
Updates Z values at specified location
|
void |
updateXAt(int index,
TX xValue)
Updates X value at specified location
|
void |
updateXyzAt(int index,
TX xValue,
TY yValue,
TZ zValue)
Updates X, Y and Z value at specified location
|
void |
updateYAt(int index,
TY yValue)
Updates Y value at specified location
|
void |
updateZAt(int index,
TZ zValue)
Updates Z value at specified location
|
toXyzDoubleValues
void append(TX x, TY y, TZ z)
x
- The X valuey
- The Y valuez
- The Z valuevoid append(java.lang.Iterable<TX> xValues, java.lang.Iterable<TY> yValues, java.lang.Iterable<TZ> zValues)
xValues
- The X valuesyValues
- The Y valueszValues
- The Z valuesvoid append(TX[] xValues, TY[] yValues, TZ[] zValues)
xValues
- The X valuesyValues
- The Y valueszValues
- The Z valuesvoid append(com.scichart.core.model.IValues<TX> xValues, com.scichart.core.model.IValues<TY> yValues, com.scichart.core.model.IValues<TZ> zValues)
xValues
- The X valuesyValues
- The Y valueszValues
- The Z valuesvoid insert(int index, TX x, TY y, TZ z)
index
- The index to insert point atx
- The X valuey
- The Y valuez
- The Z valuevoid insertRange(int startIndex, java.lang.Iterable<TX> xValues, java.lang.Iterable<TY> yValues, java.lang.Iterable<TZ> zValues)
startIndex
- The index to insert point atxValues
- The X valuesyValues
- The Y valueszValues
- The Z valuesvoid insertRange(int startIndex, TX[] xValues, TY[] yValues, TZ[] zValues)
startIndex
- The index to insert point atxValues
- The X valuesyValues
- The Y valueszValues
- The Z valuesvoid insertRange(int startIndex, com.scichart.core.model.IValues<TX> xValues, com.scichart.core.model.IValues<TY> yValues, com.scichart.core.model.IValues<TZ> zValues)
startIndex
- The index to insert point atxValues
- The X valuesyValues
- The Y valueszValues
- The Z valuesvoid updateXyzAt(int index, TX xValue, TY yValue, TZ zValue)
index
- The index of point to updatexValue
- The X valueyValue
- The Y valuezValue
- The Y1 valuevoid updateXAt(int index, TX xValue)
index
- The index of point to updatexValue
- The X valuevoid updateYAt(int index, TY yValue)
index
- The index of point to updateyValue
- The Y valuevoid updateZAt(int index, TZ zValue)
index
- The index of point to updatezValue
- The Z valuevoid updateRangeXyzAt(int index, java.lang.Iterable<TX> xValues, java.lang.Iterable<TY> yValues, java.lang.Iterable<TZ> zValues)
index
- The index of point to updatexValues
- The X valuesyValues
- The Y valueszValues
- The Y1 valuesvoid updateRangeXAt(int index, java.lang.Iterable<TX> xValues)
index
- The index of point to updatexValues
- The X valuesvoid updateRangeYAt(int index, java.lang.Iterable<TY> yValues)
index
- The index of point to updateyValues
- The Y valuesvoid updateRangeZAt(int index, java.lang.Iterable<TZ> zValues)
index
- The index of point to updatezValues
- The Z valuesvoid updateRangeXyzAt(int index, TX[] xValues, TY[] yValues, TZ[] zValues)
index
- The index of point to updatexValues
- The X valuesyValues
- The Y valueszValues
- The Y1 valuesvoid updateRangeXAt(int index, TX[] xValues)
index
- The index of point to updatexValues
- The X valuesvoid updateRangeYAt(int index, TY[] yValues)
index
- The index of point to updateyValues
- The Y valuesvoid updateRangeZAt(int index, TZ[] zValues)
index
- The index of point to updatezValues
- The Z valuesvoid updateRangeXyzAt(int index, com.scichart.core.model.IValues<TX> xValues, com.scichart.core.model.IValues<TY> yValues, com.scichart.core.model.IValues<TZ> zValues)
index
- The index of point to updatexValues
- The X valuesyValues
- The Y valueszValues
- The Y1 valuesvoid updateRangeXAt(int index, com.scichart.core.model.IValues<TX> xValues)
index
- The index of point to updatexValues
- The X valuesvoid updateRangeYAt(int index, com.scichart.core.model.IValues<TY> yValues)
index
- The index of point to updateyValues
- The Y valuesvoid updateRangeZAt(int index, com.scichart.core.model.IValues<TZ> zValues)
index
- The index of point to updatezValues
- The Z valuesvoid removeAt(int index)
index
- The index of data point to removevoid removeRange(int startIndex, int count)
startIndex
- The index of the first data point to removecount
- The amount of points to remove