Interface IDataSeries3D<TX,TY,TZ>
Defines the base interface to a 3D DataSeries which provides a data-source for com.scichart.charting3d.visuals.renderableSeries.IRenderableSeries3D
Implements
Namespace:
Assembly: .dll
Syntax
public interface IDataSeries3D<TX,TY,TZ> extends dataSeries.IDataSeriesCore
Type Parameters
| Name | Description |
|---|---|
| TX | |
| TY | |
| TZ |
Methods
getLock()
Gets a synchronization object used to lock this data-series. Also locked on append, update, remove or clear.
Declaration
public abstract IReadWriteLock getLock()
Returns
| Type | Description |
|---|---|
| IReadWriteLock | The lock for this series |
getXMath()
Gets the IMath instance for operations with X-Data
Declaration
public abstract IMath<TX> getXMath()
Returns
| Type | Description |
|---|---|
| IMath<TX> | The math instance for X-Data |
getXRange()
Gets the total extents of the IDataSeries in the X direction.
Declaration
public abstract IRange<TX> getXRange()
Returns
| Type | Description |
|---|---|
| IRange<TX> | The range in the X direction |
getYMath()
Gets the IMath instance for operations with Y-Data
Declaration
public abstract IMath<TY> getYMath()
Returns
| Type | Description |
|---|---|
| IMath<TY> | The math instance for Y-Data |
getYRange()
Gets the total extents of the IDataSeries in the Y direction.
Declaration
public abstract IRange<TY> getYRange()
Returns
| Type | Description |
|---|---|
| IRange<TY> | The range in the Y direction |
getZMath()
Gets the IMath instance for operations with Z-Data
Declaration
public abstract IMath<TZ> getZMath()
Returns
| Type | Description |
|---|---|
| IMath<TZ> | The math instance for Z-Data |
getZRange()
Gets the total extents of the IDataSeries in the Z direction.
Declaration
public abstract IRange<TZ> getZRange()
Returns
| Type | Description |
|---|---|
| IRange<TZ> | The range in the Z direction |