I'm using Google Charts to create pie charts on my Wordpress site. These 
charts display if I hard-code the data, but I'm trying to use a query of a 
public Google Sheet. It's not working, and the problem appears to be in 
this section.

        // Callback to draw the chart 
function drawChart() {
  var query = new google.visualization.Query("[Google Sheet 
URL]/gviz/tq?tq=[ENCODED QUERY]");
  query.send(handleQueryResponse);
}

Bracketed info is replaced by the real values (minus the brackets). The 
query has been encoded using the tool on this page: 
https://developers.google.com/chart/interactive/docs/querylanguage. 

I use double quotes around the URL because the query contains a where 
clause with single quotes.


Any thoughts why this isn't working?

-- 
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 google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/fcef98dd-6769-48b8-bf76-f8306d747fbfn%40googlegroups.com.

Reply via email to