In my app I'm using the iOS-Charts framework, and I figured out how to remove the grid (vertical and horizontal) by using:
barChartView.leftAxis.drawGridLinesEnabled = false
barChartView.rightAxis.drawGridLinesEnabled = false
However, I still want to have left side Y axis and bottom X axis.
Any kind of help is highly appreciated.