Good Day
Good Day

Reputation: 385

How to change line chart background color on charts_flutter plugin?

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.

enter image description here

Upvotes: 1

Views: 1513

Answers (1)

Yozmo
Yozmo

Reputation: 581

You can use ColorUtil method from dart for doing that:

color: chart.ColorUtil.fromDartColor(Colors.white)

Upvotes: 3

Related Questions