iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIFreeSurfaceDataSeries3D
@interface SCIFreeSurfaceDataSeries3D
: SCIDataSeries3D <ISCIFreeSurfaceDataSeries3DValues>
2D grid based free shaped 3D surface.
Warning
Designed to be an abstract class, hence should be used for inheritance only. No direct initializations.-
Initializer for this instance of
SCIFreeSurfaceDataSeries3D.Declaration
Objective-C
- (nonnull instancetype)initWithXType:(SCIDataType)xType yType:(SCIDataType)yType zType:(SCIDataType)zType uSize:(NSInteger)uSize vSize:(NSInteger)vSize uMin:(double)uMin uMax:(double)uMax vMin:(double)vMin vMax:(double)vMax;Swift
init(xType: SCIDataType, yType: SCIDataType, zType: SCIDataType, uSize: Int, vSize: Int, uMin: Double, uMax: Double, vMin: Double, vMax: Double)Parameters
xTypeThe type of X data.
yTypeThe type of Y data.
zTypeThe type of Z data.
uSizeThe uSize of the 2D grid.
vSizeThe vSize of the 2D grid.
uMinThe minimum value of U component of the 2D grid.
uMaxThe maximum value of U component of the 2D grid.
vMinThe minimum value of V component of the 2D grid.
vMaxThe maximum value of V component of the 2D grid.
View on GitHub