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

SCIFreeSurfaceRenderableSeries3D

@interface SCIFreeSurfaceRenderableSeries3D
    : SCIContourMeshRenderableSeries3DBase

Provides Free-Surface 3D series rendering.

  • Defines a value dermining by which 3D axis the contour is calculated.

    Declaration

    Objective-C

    @property (nonatomic) SCIAxisDirection3D contourAxis;

    Swift

    var contourAxis: SCIAxisDirection3D { get set }
  • Gets the the mode of paletteMinimum and paletteMaximum values.

    Declaration

    Objective-C

    @property (nonatomic) SCIFreeSurfacePaletteMinMaxMode paletteMinMaxMode;

    Swift

    var paletteMinMaxMode: SCIFreeSurfacePaletteMinMaxMode { get set }
  • Defines the palette minimum color in regards to X, Y and Z axis.

    Declaration

    Objective-C

    @property (nonatomic, strong, nonnull) SCIVector3 *paletteMinimum;

    Swift

    var paletteMinimum: SCIVector3 { get set }
  • Defines the palette maximum color in regards to X, Y and Z axis.

    Declaration

    Objective-C

    @property (nonatomic, strong, nonnull) SCIVector3 *paletteMaximum;

    Swift

    var paletteMaximum: SCIVector3 { get set }
  • Defines the palette color intensity in regards to X, Y and Z axis.

    Declaration

    Objective-C

    @property (nonatomic, strong, nonnull) SCIVector3 *paletteAxialFactor;

    Swift

    var paletteAxialFactor: SCIVector3 { get set }
  • Defines the palette color intensity in regards to surface distance from origin.

    Declaration

    Objective-C

    @property (nonatomic) float paletteRadialFactor;

    Swift

    var paletteRadialFactor: Float { get set }
  • Defines the palette color intensity in regards to surface orientation in azimuthal space.

    Declaration

    Objective-C

    @property (nonatomic) float paletteAzimuthalFactor;

    Swift

    var paletteAzimuthalFactor: Float { get set }
  • Defines the palette color intensity in regards to surface orientation in polar space.

    Declaration

    Objective-C

    @property (nonatomic) float palettePolarFactor;

    Swift

    var palettePolarFactor: Float { get set }
  • Defines the value determining if the back side of the chart should be drawn.

    Declaration

    Objective-C

    @property (nonatomic) BOOL drawBackSide;

    Swift

    var drawBackSide: Bool { get set }
  • Creates a new instance of SCIFreeSurfaceRenderableSeries3D class.

    Declaration

    Objective-C

    - (nonnull instancetype)init;

    Swift

    init()