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

SCIHitTestInfo3D

@interface SCIHitTestInfo3D : NSObject <ISCICleanable>

Defines a hit test info class which provides information on a series 3D hit-test operation.

  • Gets the value indicating whether this SCIHitTestInfo3D is empty or not.

    Declaration

    Objective-C

    @property (nonatomic, readonly) BOOL isEmpty;

    Swift

    var isEmpty: Bool { get }
  • The value indicating whether the HitTest operation was a hit or not.

    Declaration

    Objective-C

    @property (nonatomic) BOOL isHit;

    Swift

    var isHit: Bool { get set }
  • The id of entity which was hit.

    Declaration

    Objective-C

    @property (nonatomic) unsigned int entityId;

    Swift

    var entityId: UInt32 { get set }
  • The id of vertex which was hit.

    Declaration

    Objective-C

    @property (nonatomic) unsigned int vertexId;

    Swift

    var vertexId: UInt32 { get set }
  • 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 }