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

SCIYDispsplaceableFreeSurfaceDataSeries3D

@interface SCIYDispsplaceableFreeSurfaceDataSeries3D
    : SCIDisplaceableFreeSurfaceDataSeries3D

2D grid based free shaped 3D surface with dip.

Warning

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

    Declaration

    Objective-C

    - (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

    xType

    The type of X-Data

    yType

    The type of Y-Data

    zType

    The type of Z-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.