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

SCITooltipModifier3D

@interface SCITooltipModifier3D : SCITooltipModifierBase3D

The SCITooltipModifier3D provides a touch-over tooltip to a chart, outputting a single SCISeriesInfo3D object to bind to which updates as the touch moves over data-points.

  • Defines the offset on which tooltip and the marker will be shifted in x and y directions.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat offset;

    Swift

    var offset: CGFloat { get set }
  • Gets the CGPoint value which will replace offset property and will be used to shift tooltip and the marker in custom x and y directions.

    Declaration

    Objective-C

    @property (nonatomic) CGPoint customPointOffset;

    Swift

    var customPointOffset: CGPoint { get set }
  • Gets the SCIPlacement mode, to determine where to place tooltip and the marker relatively to the Hit-test point.

    Declaration

    Objective-C

    @property (nonatomic) SCIPlacement markerPlacement;

    Swift

    var markerPlacement: SCIPlacement { get set }
  • Defines the SCICrosshairMode type of series on which interaction is performed.

    Declaration

    Objective-C

    @property (nonatomic) SCICrosshairMode crosshairMode;

    Swift

    var crosshairMode: SCICrosshairMode { get set }
  • Defines the projection mode used to draw Crosshairs.

    Declaration

    Objective-C

    @property (nonatomic) SCIProjectionMode projectionMode;

    Swift

    var projectionMode: SCIProjectionMode { get set }
  • Defines the style to draw stroke of Crosshairs.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCISolidPenStyle *_Nonnull crosshairStrokeStyle;

    Swift

    var crosshairStrokeStyle: SCISolidPenStyle { get set }
  • Defines the projection mode used to draw Crosshair lines.

    Declaration

    Objective-C

    @property (nonatomic) SCILineProjectionMode lineProjectionMode;

    Swift

    var lineProjectionMode: SCILineProjectionMode { get set }
  • Defines whether modifier should show axis label.

    Declaration

    Objective-C

    @property (nonatomic) BOOL showAxisLabels;

    Swift

    var showAxisLabels: Bool { get set }
  • Defines the color to draw Crosshair planes with.

    Declaration

    Objective-C

    @property (nonatomic, strong) UIColor *_Nonnull crosshairPlanesFill;

    Swift

    var crosshairPlanesFill: UIColor { get set }
  • Gets the SCIPenStyle instance which will be used by SCICrossDrawableBehavior to tooltip marker.

    Declaration

    Objective-C

    @property (nonatomic, strong) SCIPenStyle *_Nonnull tooltipPointMarkerPaintStyle;

    Swift

    var tooltipPointMarkerPaintStyle: SCIPenStyle { get set }