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
SCIDataSeries3Dinstance.Declaration
Objective-C
- (nonnull instancetype)initWithXType:(SCIDataType)xType yType:(SCIDataType)yType zType:(SCIDataType)zType;Swift
init(xType: SCIDataType, yType: SCIDataType, zType: SCIDataType)Parameters
xTypeThe type of
X-Data.yTypeThe type of
Y-Data.zTypeThe type of
Z-Data.
View on GitHub