Starting today, for column and line charts, I'm seeing a shadow around the 
hAxis labels.
The color of the shadow is the same as the value of the chart's 
backgroundColor property.
However, I'm setting the value of backgroundColor to "transparent" and in 
this case the shadow is white.
Any ideas how to control the color of this shadow separately from 
backgroundColor?
Thanks!

To reproduce:
html:
<script type="text/javascript" 
src="https://www.google.com/jsapi?autoload={'modules':[{'name':'visualization','version':'1','packages':['corechart']}]}"></script>
<div>Hello world</div>
       <div id="chart_div" style="width: 900px; height: 500px;"></div>
   
css:
body {
    background-color: #000;
}

js:
  google.setOnLoadCallback(drawChart);
      function drawChart() {
        var data = google.visualization.arrayToDataTable([
          ['Year', 'Sales', 'Expenses'],
          ['2004',  1000,      400],
          ['2005',  1170,      460],
          ['2006',  660,       1120],
          ['2007',  1030,      540]
        ]);

        var options = {
          title: 'Company Performance',
          vAxis: {title: 'Year',  titleTextStyle: {color: 'green'}},
            backgroundColor:'transparent'
        };

        var chart = new 
google.visualization.BarChart(document.getElementById('chart_div'));

        chart.draw(data, options);
      }

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.

Reply via email to