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
Oh no, that was totally my bad.
I was switching x and y: let entry = ChartDataEntry(x: value, y: Double(index))
instead of the correct one: let entry = ChartDataEntry(x: Double(index), y: value)
Hi,
I migrated my codebase to Swift 3.0, and I'm using Charts from master.
I had a
LineChartView
that displayed correctly the following:However, after migrating to master, the dots/line are being rendered rotated, in the wrong orientation, and I'm getting the following:
Any idea what I might be doing wrong?
Thanks!
The text was updated successfully, but these errors were encountered: