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'm using an HorizontalBarChartView
I have set a value formatter: [cell.chartView.xAxis setValueFormatter: self];
[cell.chartView.xAxis setValueFormatter: self];
The formatter is correctly triggered
The pb is that the String label returned by the formatter is cropped and the label is not correctly displayed.
How to recompute labels size/width on the xAxis after calling the value formatter ?
The text was updated successfully, but these errors were encountered:
there are functions getting the size of label before render: open override func computeSize()
look at the implementation to know why it does not compute correctly.
Sorry, something went wrong.
No branches or pull requests
I'm using an HorizontalBarChartView
I have set a value formatter:
[cell.chartView.xAxis setValueFormatter: self];
The formatter is correctly triggered
The pb is that the String label returned by the formatter is cropped and the label is not correctly displayed.
How to recompute labels size/width on the xAxis after calling the value formatter ?
The text was updated successfully, but these errors were encountered: