Question

My current data is hardcoded:

   var geoData = new google.visualization.DataTable();
        geoData.addColumn('string', 'City');
        geoData.addColumn('string', 'Name');
        geoData.addColumn('boolean', 'Yes/no');

var geoView = new google.visualization.DataView(geoData);
        geoView.setColumns([0, 1]);
Was it helpful?

Solution

var query = new google.visualization.Query('http://spreadsheets.google.com/...')

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top