iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIDataSeries3D
@interface SCIDataSeries3D : SCIDataSeriesCore <ISCIDataSeries3D> {
SCIDataType _xType;
SCIDataType _yType;
SCIDataType _zType;
id<ISCIMath> _xMath;
id<ISCIMath> _yMath;
id<ISCIMath> _zMath;
}
Defines a base class for 3D Data Series used by various ISCIRenderableSeries3D
.
-
Defines the type of the X-Data.
Declaration
Objective-C
SCIDataType _xType
-
Defines the type of the Y-Data.
Declaration
Objective-C
SCIDataType _yType
-
Defines the type of the X-Data.
Declaration
Objective-C
SCIDataType _zType
-
Creates a new
SCIDataSeries3D
instance.Declaration
Objective-C
- (nonnull instancetype)initWithXType:(SCIDataType)xType yType:(SCIDataType)yType zType:(SCIDataType)zType;
Swift
init(xType: SCIDataType, yType: SCIDataType, zType: SCIDataType)
Parameters
xType
The type of
X-Data
.yType
The type of
Y-Data
.zType
The type of
Z-Data
.