Oops, scratch that last comment, the auraColor property is working fine. Thanks! Pasha
On Tuesday, October 7, 2014 5:17:25 PM UTC-7, Pasha Bitz wrote: > > Thanks Daniel! > I see that the change is reverted. > However, I can't get the auraColor to work. > Is that something that's supported on hAxis.textStyle ? > > Thanks! > Pasha > > On Tuesday, October 7, 2014 4:35:09 PM UTC-7, Daniel LaLiberte wrote: >> >> Hi Pasha, >> >> There is a new 'auraColor' option that you can include in any of the >> 'textStyle' options to control this shadow color. It may be that the >> auraColor ought to be the same as the background color, even if it is >> transparent. We'll have to check why it is white and decide whether that >> is correct. >> >> We are in the process of pushing out a new release, but we rolled it back >> due to a different problem, so you should see the previous behavior again. >> >> >> On Tue, Oct 7, 2014 at 5:42 PM, Pasha Bitz <[email protected]> wrote: >> >>> 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. >>> >> >> >> >> -- >> Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2> >> - 978-394-1058 >> [email protected] 5CC, Cambridge MA >> [email protected] 9 Juniper Ridge Road, Acton MA >> > -- 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.
