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
I have labels overlap
I'm trying to change min/max values of axis to make an offset
let offset = (chart.rightAxis.axisMaximum - chart.rightAxis.axisMinimum)/5 chart.rightAxis.axisMinimum = chart.rightAxis.axisMinimum - offset chart.rightAxis.axisMaximum = chart.rightAxis.axisMaximum + offset
But it doesn't affect line, only axis
Same way with xAxis works like a charm How can I prevent overlap?
The text was updated successfully, but these errors were encountered:
Ok, just found solution,
lineChartDataSet.axisDependency = .right
Sorry, something went wrong.
No branches or pull requests
I have labels overlap
I'm trying to change min/max values of axis to make an offset
let offset = (chart.rightAxis.axisMaximum - chart.rightAxis.axisMinimum)/5 chart.rightAxis.axisMinimum = chart.rightAxis.axisMinimum - offset chart.rightAxis.axisMaximum = chart.rightAxis.axisMaximum + offset
But it doesn't affect line, only axis
Same way with xAxis works like a charm
How can I prevent overlap?
The text was updated successfully, but these errors were encountered: