iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIXyzDisplaceableFreeSurfaceDataSeries3D
@interface SCIXyzDisplaceableFreeSurfaceDataSeries3D
: SCIDisplaceableFreeSurfaceDataSeries3D
Free Surface data series with the grid data, applied to its points displacing them along the XYZ axes.
Warning
Designed to be an abstract class, hence should be used for inheritance only. No direct initializations.-
Creates a new
SCIDisplaceableFreeSurfaceDataSeries3Dinstance.Declaration
Objective-C
- (nonnull instancetype)initWithDataType:(SCIDataType)dataType uSize:(NSInteger)uSize vSize:(NSInteger)vSize uMin:(double)uMin uMax:(double)uMax vMin:(double)vMin vMax:(double)vMax;Swift
init(dataType: SCIDataType, uSize: Int, vSize: Int, uMin: Double, uMax: Double, vMin: Double, vMax: Double)Parameters
dataTypeThe type of X, Y and 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