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

SCIWaterfallSeriesInfo3D

@interface SCIWaterfallSeriesInfo3D : SCISeriesInfo3D

Defines a class which contains information about a SCIWaterfallRenderableSeries3D, such as name, value, color based on SCIHitTestInfo3D values.

  • The x-index of point which was hit in case of grid data.

    Declaration

    Objective-C

    @property (nonatomic) int xIndex;

    Swift

    var xIndex: Int32 { get set }
  • The z-index of point which was hit in case of grid data.

    Declaration

    Objective-C

    @property (nonatomic) int zIndex;

    Swift

    var zIndex: Int32 { get set }
  • Creates a new instance of SCIWaterfallSeriesInfo3D class.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithSeries:
        (nonnull SCIWaterfallRenderableSeries3D *)series;

    Swift

    init(series: SCIWaterfallRenderableSeries3D)

    Parameters

    series

    The associated parent SCIWaterfallRenderableSeries3D series.