Hi!
I need to reverse y axis data to see high counts in the bottom and low on 
the top.
How can I do this?

This is my code:

script type="text/javascript" src="https://www.google.com/jsapi 
<view-source:https://www.google.com/jsapi>"></script> <script 
type="text/javascript"> google.load("visualization", "1", 
{packages:["corechart"]}); google.setOnLoadCallback(drawChart); function 
drawChart() { var data = google.visualization.arrayToDataTable([ 
['Day','Count'], 
['2015-06-10',8],['2015-06-11',9],['2015-06-12',9],['2015-06-13',9], ]); var 
options = { title: 'Data' }; var chart = new 
google.visualization.AreaChart(document.getElementById('chart_diva')); 
chart.draw(data, options); } </script> <div id="chart_diva" style="width: 100%; 
height: 300px;"></div>


-- 
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