iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
ISCISeriesTooltipCallback
@protocol ISCISeriesTooltipCallback
Defines a callback which allows to update series tooltip with latest information for specified [x, y] coordinates on screen.
-
Tries to update series tooltip on screen.
Declaration
Objective-C
- (BOOL)tryUpdateTooltip:(nonnull id<ISCISeriesTooltipCore>)seriesTooltip at:(CGPoint)point;Swift
func tryUpdateTooltip(_ seriesTooltip: any ISCISeriesTooltipCore, at point: CGPoint) -> BoolParameters
seriesTooltipThe tooltip to update.
pointThe
[x, y]coordinates of the tooltip on screen.Return Value
YESif update was successful, otherwise -NO.
View on GitHub