I\'m styling a google chart using the javascript api. I want to change the background of the area where the data is plotted. For some reason when I set background options li
add this to your options:
'chartArea': { 'backgroundColor': { 'fill': '#F4F4F4', 'opacity': 100 }, }
You can do it just with CSS:
#salesChart svg > rect { /*#salesChart is ID of your google chart*/ fill: #F4F4F4; }