iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x

SCIXzDisplaceableFreeSurfaceDataSeries3D

@interface SCIXzDisplaceableFreeSurfaceDataSeries3D
    : SCIDisplaceableFreeSurfaceDataSeries3D

Free Surface data series with the grid data, applied to its points displacing them along the XZ axes.

Warning

Designed to be an abstract class, hence should be used for inheritance only. No direct initializations.
  • Creates a new SCIDisplaceableFreeSurfaceDataSeries3D instance.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithXZType:(SCIDataType)xzType
                                     yType:(SCIDataType)yType
                                     uSize:(NSInteger)uSize
                                     vSize:(NSInteger)vSize
                                      uMin:(double)uMin
                                      uMax:(double)uMax
                                      vMin:(double)vMin
                                      vMax:(double)vMax;

    Swift

    init(xzType: SCIDataType, yType: SCIDataType, uSize: Int, vSize: Int, uMin: Double, uMax: Double, vMin: Double, vMax: Double)

    Parameters

    xzType

    The type of X and Z data.

    yType

    The type of Y-Data.

    uSize

    The uSize of the 2D grid.

    vSize

    The vSize of the 2D grid.

    uMin

    The minimum value of U component of the 2D grid.

    uMax

    The maximum value of U component of the 2D grid.

    vMin

    The minimum value of V component of the 2D grid.

    vMax

    The maximum value of V component of the 2D grid.