We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How are touch events handled? The Android version has a OnChartGestureListener, but I don't see an equivalent for the Swift framework.
OnChartGestureListener
I want to un-highlight a line chart when dragging has stopped, among other things. Am I missing it?
Thanks
The text was updated successfully, but these errors were encountered:
iOS has gestures and their handlers. check out
internal var _tapGestureRecognizer: UITapGestureRecognizer! internal var _doubleTapGestureRecognizer: UITapGestureRecognizer! #if !os(tvOS) internal var _pinchGestureRecognizer: UIPinchGestureRecognizer! #endif internal var _panGestureRecognizer: UIPanGestureRecognizer!
and their handlers, such as:
@objc private func panGestureRecognized(recognizer: UIPanGestureRecognizer)
(search other handlers)
Sorry, something went wrong.
No branches or pull requests
How are touch events handled? The Android version has a
OnChartGestureListener
, but I don't see an equivalent for the Swift framework.I want to un-highlight a line chart when dragging has stopped, among other things. Am I missing it?
Thanks
The text was updated successfully, but these errors were encountered: