iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCITooltipBehaviorBase
@interface SCITooltipBehaviorBase<T : id <ISCIChartModifier>>
: SCIModifierBehavior <T>
Defines a base class with tooltip behavior for ISCIChartModifier implementors.
Note
T is the type of modifier to which this behavior will be attached.
-
Provides default cursor offset in x-y direction
Declaration
Objective-C
+ (float)cursorXyOffset;Swift
class func cursorXyOffset() -> Float -
Defines a value indicating whether to use interpolation during updating tooltip or not.
Declaration
Objective-C
@property (nonatomic) BOOL useInterpolation;Swift
var useInterpolation: Bool { get set } -
Defines the
SCIRenderableSeriesCollectionfrom the parentSCIChartSurface.Declaration
Objective-C
@property (nonatomic, weak, nullable) SCIObservableCollection<id<ISCIRenderableSeries>> *observableSeries;Swift
weak var observableSeries: SCIObservableCollection<any ISCIRenderableSeries>? { get set } -
Gets the
SCISourceModetype of series on which interaction is performed.Declaration
Objective-C
@property (nonatomic) SCISourceMode sourceMode;Swift
var sourceMode: SCISourceMode { get set }
View on GitHub