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

SCIMultiPointLabelAnchorMode

enum SCIMultiPointLabelAnchorMode : NSInteger {}

Enumeration constants to define what a SCIMultiPointLabel is anchored to.

  • Anchors the label to a single base point, selected by pointIndex.

    Declaration

    Objective-C

    SCIMultiPointLabelAnchorMode_Point

    Swift

    case point = 0
  • Anchors the label to a position along the segment between two base points.

    Declaration

    Objective-C

    SCIMultiPointLabelAnchorMode_Segment

    Swift

    case segment = 1
  • Anchors the label to an axis. The label draws as an axis badge whose text comes from the axis itself, so the text and styling properties of the label are ignored.

    Declaration

    Objective-C

    SCIMultiPointLabelAnchorMode_Axis

    Swift

    case axis = 2