Hello,

so my problem is I created a table chart with this code below :

var jsonData = $.ajax({
          url: "MyURL",
          dataType: "json",
          async: false
          }).responseText;

      // Create our data table out of JSON data loaded from server.
      var data = new google.visualization.DataTable(jsonData);

      var table = new 
google.visualization.Table(document.getElementById('table_div'));

      table.draw(data, {showRowNumber: true, width: '100%', height: 
'100%'});


And now I want to create an export csv, so I followed the Google Docs with 
this : 

{type: 'csv', datasource: 'MyUrl'}

But this only create a new page with the JSON I give hime with my URL and 
not the CSV.

I don't know if i'm really clear, if you have a question, let me know :)

Yoann

-- 
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 https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/915d7ff7-2749-4d32-b1cd-4a34f0772039%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to