hello 
i'm trying to display the piechart using spreadsheet data  
https://docs.google.com/spreadsheet/ccc?key=0ArFGfpB6duBGdFpSa2s0TEliUlVBVWdDbEs2N0ttNnc#gid=0
1) problem is that only two states details are being dispayed in the 
chart,the code i did is
2) i need to pass state as parameter to the chart
how can do this ,please kindly help me

 function draw(response) {
        if (response.isError()) {
          alert('Error in query');
        }

        var data = response.getDataTable();
        var chart = new 
google.visualization.ColumnChart(document.getElementById('chart_div'));
        chart.draw(data, {'isStacked': true, 'legend': 'bottom','vAxis': 
{'title': ''}});

      }
function drawPieChart(){
                var queryP = new google.visualization.Query(
              
'https://docs.google.com/spreadsheet/ccc?key=0ArFGfpB6duBGdFpSa2s0TEliUlVBVWdDbEs2N0ttNnc#gid=0'
 
);
      
           queryP.send(handleQueryResponse);
       }

       function handleQueryResponse(response) {
         if (response.isError()) {
           alert('Error in query: ' + response.getMessage() + ' ' + 
response.getDetailedMessage());
           return;
         }

         var dataP = response.getDataTable();
        var chart1 = new 
google.visualization.PieChart(document.getElementById('pie_div'));
         chart1.draw(dataP);
    }
  google.setOnLoadCallback(drawVisualization);

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-visualization-api/-/MQOIIvjAUKkJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to