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
SCIUniformGridDataSeries3Dinstance.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
xTypeThe type of
X-Data.yTypeThe type of
Y-Data.zTypeThe type of
Z-Data.xSizeThe size of the X.
zSizeThe size of the Z.
View on GitHub