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

SCIHorizontallyStackedColumnsCollection

@interface SCIHorizontallyStackedColumnsCollection
    : SCIStackedSeriesCollectionBase

Provides Horizontally Stacked Columns rendering.

  • Sets the value which specifies the width of the gap between horizontally stacked columns. Can be set to either a relative or absolute value depending on the SCISpacingMode used.

    Declaration

    Objective-C

    @property (nonatomic) double spacing;

    Swift

    var spacing: Double { get set }
  • Sets the SCISpacingMode to use for the space between columns computations.

    Note

    the default of Absolute requires that the spacing value is in pixels. The value of Relative requires that the spacing value is a double value from 0.0 to 1.0.

    Declaration

    Objective-C

    @property (nonatomic) SCISpacingMode spacingMode;

    Swift

    var spacingMode: SCISpacingMode { get set }
  • Gets a value between 0.0 and 1.0 which defines the fraction of available space each column should occupy

    Declaration

    Objective-C

    @property (nonatomic) double dataPointWidth;

    Swift

    var dataPointWidth: Double { get set }