deltaaruna
unread,Feb 23, 2012, 6:33:37 AM2/23/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Visualization API
Hi all,
I am using google visualization datasource 1.02 java API.
I want put a maximum limit for my chart. Here is my code. I am using
query the DB and generate the data table fro the chart.
var options2 = {
width: 1000, height: 500,
title: 'The Results',
vAxis: {max: 10000000}
};
var data2 = response.getDataTable();
var chart = new
google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data2,options2);