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
This issue is still there in AxisRendererBase.swift on line 125
fatal error: Double value cannot be converted to Int because it is either infinite or NaN
The text was updated successfully, but these errors were encountered:
I am able to resolve this. I was doing like this in chart settings self.viewChart.moveViewToX(Double.Infinity)
and it is fixed by doing this self.viewChart.moveViewToX(Double(CGFloat.greatestFiniteMagnitude))
This issue is still there in AxisRendererBase.swift on line 125
fatal error: Double value cannot be converted to Int because it is either infinite or NaN
The text was updated successfully, but these errors were encountered: