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

SCISurfaceMeshRenderableSeries3D

@interface SCISurfaceMeshRenderableSeries3D
    : SCIContourMeshRenderableSeries3DBase

Provides SurfaceMesh series rendering.

  • Defines the value indicating whether to draw the skirt (geometry from the edges of the surface mesh to the zero line in Y).

    Declaration

    Objective-C

    @property (nonatomic) BOOL drawSkirt;

    Swift

    var drawSkirt: Bool { get set }
  • Defines the value which corresponds to minimum color.

    Declaration

    Objective-C

    @property (nonatomic) double minimum;

    Swift

    var minimum: Double { get set }
  • Defines the value which corresponds to maximum color.

    Declaration

    Objective-C

    @property (nonatomic) double maximum;

    Swift

    var maximum: Double { get set }
  • Defines the mesh resolution. By default for each point in the data series, there will be one vertex in the resulting mesh.

    Declaration

    Objective-C

    @property (nonatomic) SCIMeshResolution meshResolution;

    Swift

    var meshResolution: SCIMeshResolution { get set }
  • Defines the height scale factor. Default is 1.0f. Value of 0.0f will render a flat Uniform Surface Mesh. Value of 1.0f will use the scaling of the chart’s YAxis.

    Declaration

    Objective-C

    @property (nonatomic) float heightScaleFactor;

    Swift

    var heightScaleFactor: Float { get set }
  • Defines a Y-Offset in World Coordinates.

    Note

    This offset will change the base position of the SCISurfaceMeshRenderableSeries3D on the chart’s YAxis.

    Declaration

    Objective-C

    @property (nonatomic) float yOffset;

    Swift

    var yOffset: Float { get set }
  • Creates a new instance of SCISurfaceMeshRenderableSeries3D class.

    Declaration

    Objective-C

    - (nonnull instancetype)init;

    Swift

    init()