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
The setting of the bubble color via dataset does not work as expected.
It looks lkie a bug to me:
In BubbleChartRenderer.swift on line 122 the code is: let color = dataSet.color(atIndex: Int(entry.x))
I think it should be:
let color = dataSet.color(atIndex: Int(entry.x)): let color = dataSet.color(atIndex: Int(j))
The text was updated successfully, but these errors were encountered:
The setting of the bubble color via dataset does not work as expected.
It looks lkie a bug to me:
In BubbleChartRenderer.swift on line 122 the code is:
let color = dataSet.color(atIndex: Int(entry.x))
I think it should be:
let color = dataSet.color(atIndex: Int(entry.x)):
let color = dataSet.color(atIndex: Int(j))
The text was updated successfully, but these errors were encountered: