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
I am using the latest Charts version after updating a project to Swift 3.1.
However, the dataset initializer not longer takes the labels as it did before
before: let pieChartData = PieChartData.init(xVals: labels, dataSets: [dataSet])
now let pieChartData = PieChartData.init(dataSets: [dataSet])
Reference to code/docs with the updated way to do this?
The text was updated successfully, but these errors were encountered:
I am using the latest Charts version after updating a project to Swift 3.1.
However, the dataset initializer not longer takes the labels as it did before
before:
let pieChartData = PieChartData.init(xVals: labels, dataSets: [dataSet])
now
let pieChartData = PieChartData.init(dataSets: [dataSet])
Reference to code/docs with the updated way to do this?
The text was updated successfully, but these errors were encountered: