Interface IUniformGridDataSeries3DValues<TX,TY,TZ>
Defines an interface to uniform 3D GridDataSeries, the data source used for various com.scichart.charting3d.visuals.renderableSeries.IRenderableSeries3D
Implements
com.scichart.charting3d.model.dataSeries.grid.IGridDataSeries3DValues<TX,TY,TZ>
Namespace:
Assembly: .dll
Syntax
public interface IUniformGridDataSeries3DValues<TX,TY,TZ> extends dataSeriesIGridDataSeries3DValues<TX,TY,TZ>
Type Parameters
| Name | Description |
|---|---|
| TX | |
| TY | |
| TZ |
Methods
getStartX()
Gets start X value for 3D grid
Declaration
public abstract TX getStartX()
Returns
| Type | Description |
|---|---|
| TX | The startX value |
getStartZ()
Gets start Z value for 3D grid
Declaration
public abstract TZ getStartZ()
Returns
| Type | Description |
|---|---|
| TZ | The startZ value |
getStepX()
Gets the size for each cell in 3D grid
Declaration
public abstract TX getStepX()
Returns
| Type | Description |
|---|---|
| TX | The stepX value |
getStepZ()
Gets the size for each cell in 3D grid
Declaration
public abstract TZ getStepZ()
Returns
| Type | Description |
|---|---|
| TZ | The stepZ value |
Implements
com.scichart.charting3d.model.dataSeries.grid.IGridDataSeries3DValues<TX,TY,TZ>