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
Hi!, I just cant find the option to remove the top grid line from the linechart.
I want to remove this line here:
I've done this, but this just remove the right and left grid but not the one on top:
chartView.leftAxis.drawGridLinesEnabled = false chartView.leftAxis.drawLabelsEnabled = false chartView.leftAxis.drawGridLinesBehindDataEnabled = false chartView.leftAxis.gridColor = .clear chartView.leftAxis.axisLineColor = .clear chartView.rightAxis.drawGridLinesEnabled = false chartView.xAxis.drawGridLinesEnabled = false chartView.xAxis.drawGridLinesBehindDataEnabled = false chartView.rightAxis.drawLabelsEnabled = false chartView.rightAxis.drawGridLinesBehindDataEnabled = false chartView.rightAxis.gridColor = .clear chartView.rightAxis.axisLineColor = .clear
Thank you
The text was updated successfully, but these errors were encountered:
Hello, I'm answering my own question.
This two lines made the trick:
chartView.xAxis.drawAxisLineEnabled = false chartView.xAxis.labelTextColor = .clear
Thank you!
Sorry, something went wrong.
@josmanperez instead of chartView.xAxis.labelTextColor = .clear
chartView.xAxis.labelTextColor = .clear
better to use chartView.xAxis.drawLabelsEnabled = false
chartView.xAxis.drawLabelsEnabled = false
To remove the grid it's enough to use this:
chartView.leftAxis.drawGridLinesEnabled = false chartView.rightAxis.drawGridLinesEnabled = false chartView.xAxis.drawGridLinesEnabled = false
No branches or pull requests
Hi!, I just cant find the option to remove the top grid line from the linechart.
I want to remove this line here:
I've done this, but this just remove the right and left grid but not the one on top:
Thank you
The text was updated successfully, but these errors were encountered: