iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIUniformGridDataSeries3D
@interface SCIUniformGridDataSeries3D
: SCIBaseGridDataSeries3D <ISCIXyzDataSeries3DValues,
ISCIUniformGridDataSeries3DValues>
Defines a uniform 3D GridDataSeries.
-
Defines start X value for 3D grid.
Declaration
Objective-C
@property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> startX;
-
Defines the size for each cell in 3D grid in X direction.
Declaration
Objective-C
@property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> stepX;
-
Defines start Z value for 3D grid.
Declaration
Objective-C
@property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> startZ;
-
Defines the size for each cell in 3D grid in Z direction.
Declaration
Objective-C
@property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> stepZ;
-
Creates a new
SCIUniformGridDataSeries3D
instance.Declaration
Objective-C
- (nonnull instancetype)initWithXType:(SCIDataType)xType yType:(SCIDataType)yType zType:(SCIDataType)zType xSize:(NSInteger)xSize zSize:(NSInteger)zSize;
Swift
init(xType: SCIDataType, yType: SCIDataType, zType: SCIDataType, xSize: Int, zSize: Int)
Parameters
xType
The type of
X-Data
.yType
The type of
Y-Data
.zType
The type of
Z-Data
.xSize
The size of the X.
zSize
The size of the Z.