iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIGestureModifierDelegate
@protocol SCIGestureModifierDelegate <NSObject>
Defines the base class to a Chart Modifier which detects standard gestures detected by the Gesture Recognizers.
Note
If you want to receive actions from theSCIGestureModifierBase.gestureRecognizer in derived classes,
either implement -[ISCIReceiveGestureEvents onEvent:], or one of the following methods separatelly:
-[SCIGestureModifierBase onGestureBeganWithArgs:].-[SCIGestureModifierBase onGestureChangedWithArgs:].-[SCIGestureModifierBase onGestureEndedWithArgs:].-[SCIGestureModifierBase onGestureCancelledWithArgs:].
See
SCIZoomPanModifier.
See
SCIPinchZoomModifier.
See
SCIXAxisDragModifier.
See
SCIYAxisDragModifier.
-
Undocumented
Declaration
Objective-C
- (void)onGestureBeganWithArgs:(SCIGestureModifierEventArgs *_Nonnull)args;Swift
func onGestureBegan(with args: SCIGestureModifierEventArgs) -
Undocumented
Declaration
Objective-C
- (void)onGestureEndedWithArgs:(SCIGestureModifierEventArgs *_Nonnull)args;Swift
func onGestureEnded(with args: SCIGestureModifierEventArgs) -
Undocumented
Declaration
Objective-C
- (void)onGestureCancelledWithArgs:(SCIGestureModifierEventArgs *_Nonnull)args;Swift
func onGestureCancelled(with args: SCIGestureModifierEventArgs)
View on GitHub