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 @danielgindi and @liuxuan30 again, thank you for this amazing job!
I found a little issue here, when you have a chart with some bubbles at the same xIndex, something like that, you are not able to select all of them.
I did a little research and i discover that the following comparison on ChartDataSet.swift the problem
if abs(value.y - yValue) < abs(closestYValue - yValue) { closestYValue = yValue closestYIndex = closest }
If we add an equal = now we are able to select every bubble.
=
if abs(value.y - yValue) <= abs(closestYValue - yValue) { closestYValue = yValue closestYIndex = closest }
The text was updated successfully, but these errors were encountered:
sounds like you solved it? PR welcome :)
Sorry, something went wrong.
No branches or pull requests
Hi @danielgindi and @liuxuan30 again, thank you for this amazing job!
I found a little issue here, when you have a chart with some bubbles at the same xIndex, something like that, you are not able to select all of them.
I did a little research and i discover that the following comparison on ChartDataSet.swift the problem
If we add an equal
=
now we are able to select every bubble.The text was updated successfully, but these errors were encountered: