You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the file ChartYAxisRenderer.swift, line 136 : There is a small chance that the interval is 0(e.g. I set rightYAxis.granularity = 0.001 or a smaller number).
I recommend adding guard interval != 0 else {return} at line 136 .
Otherwise it might cause error when calculating last which finally crash app.
In the file ChartYAxisRenderer.swift, line 136 : There is a small chance that the
interval
is 0(e.g. I setrightYAxis.granularity = 0.001
or a smaller number).I recommend adding
guard interval != 0 else {return}
at line 136 .Otherwise it might cause error when calculating last which finally crash app.
Screenshot
The text was updated successfully, but these errors were encountered: