Search code examples
chartstooltipgoogle-visualization

Google chart API styling tooltips


Is there a way to style Tooltips in Google chart API? I've managed to only change the color of text using tooltip.textStyle. So is there any solution to change the white background to some other color (as shown on picture):

enter image description here

Test playground http://jsfiddle.net/nyNAg/


Solution

  • I found a solution through serendipity:

    <style>
    path {
      fill: yellow;
    }
    </style>
    

    Anyway, I did not find any configuration option for background in the google charts API.