How to disable the cross and other touch events in ios-charts?
Doh! in storyboard I can disable "User Interaction Enabled".
that do the trick.
The accepted solution didn't work for my barChartView
for some reason.
Instead, setting barChartView.isUserInteractionEnabled = false
did the trick.
So, for the OP, the following should work self.lineChartView.isUserInteractionEnabled = false