First of, thanks for an AWESOME library 馃殌
chartViewDidEndPanning
is not being called in 3.5.0 after this change:
https://github.com/danielgindi/Charts/pull/4271
if anyone is interested, I am using this fork for now: https://github.com/GetBlast/Charts/commit/22e8eca5af55e11c41644a498bc941dd859c2680 from @tsorencraig
Having the same issue with LineChartView
's delegate (chartViewDidEndPanning
not getting called).
Would be nice to have a new delegate method to handle when highlight drag has ended or maybe add a new parameter to the existing chartViewDidEndPanning
to differentiate which panning action happened.
Yes, a new delegate method, please!
Not nice but this "workaround" helped me:
let pan = lineChartView.gestureRecognizers?.first { $0 is UIPanGestureRecognizer }
pan?.addTarget(self, action: #selector(gestureRecognized(_:)))
@objc func gestureRecognized(_ recognizer: UIPanGestureRecognizer) {
if recognizer.state == .ended || recognizer.state == .cancelled {
// Pan Ended
}
}
Most helpful comment
Yes, a new delegate method, please!
Not nice but this "workaround" helped me:
let pan = lineChartView.gestureRecognizers?.first { $0 is UIPanGestureRecognizer } pan?.addTarget(self, action: #selector(gestureRecognized(_:)))
@objc func gestureRecognized(_ recognizer: UIPanGestureRecognizer) { if recognizer.state == .ended || recognizer.state == .cancelled { // Pan Ended } }