Reputation: 385
I am using charts_flutter to create a line chart, but i have difficulty to change the color of the charts. the background color follow the themes background color, i wany change to white background.
Upvotes: 1
Views: 1513
Reputation: 581
You can use ColorUtil method from dart for doing that:
color: chart.ColorUtil.fromDartColor(Colors.white)
Upvotes: 3