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
You can do it just with CSS:
#salesChart svg > rect { /*#salesChart is ID of your google chart*/ fill: #F4F4F4; }