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

SCIColumnRenderableSeries3D

@interface SCIColumnRenderableSeries3D : SCIXyzRenderableSeries3DBase

Provides 3D Columns series rendering.

  • Defines the Fill color for columns.

    Declaration

    Objective-C

    @property (nonatomic) unsigned int fillColor;

    Swift

    var fillColor: UInt32 { get set }
  • Defines the the value between 0.0 and 1.0 which defines the fraction of available space each column should occupy in X and Z dimensions.

    Declaration

    Objective-C

    @property (nonatomic) double dataPointWidth;

    Swift

    var dataPointWidth: Double { get set }
  • Defines the the value between 0.0 and 1.0 which defines the fraction of available space each column should occupy in X dimension.

    Declaration

    Objective-C

    @property (nonatomic) double dataPointWidthX;

    Swift

    var dataPointWidthX: Double { get set }
  • Defines the the value between 0.0 and 1.0 which defines the fraction of available space each column should occupy in Z dimension.

    Declaration

    Objective-C

    @property (nonatomic) double dataPointWidthZ;

    Swift

    var dataPointWidthZ: Double { get set }
  • Defines the value determining how colum size and spacing between them is calculated.

    Possible values:

    Declaration

    Objective-C

    @property (nonatomic) SCIColumnSpacingMode columnSpacingMode;

    Swift

    var columnSpacingMode: SCIColumnSpacingMode { get set }
  • Sets size of column for the SCIColumnSpacingMode.SCIColumnSpacingMode_FixedSize mode.

    Declaration

    Objective-C

    @property (nonatomic) float columnFixedSize;

    Swift

    var columnFixedSize: Float { get set }
  • Defines the shape of the columns.

    Declaration

    Objective-C

    @property (nonatomic) SCIChartMeshTemplate columnShape;

    Swift

    var columnShape: SCIChartMeshTemplate { get set }
  • Creates a new instance of SCIColumnRenderableSeries3D class.

    Declaration

    Objective-C

    - (nonnull instancetype)init;

    Swift

    init()