I am getting a json string from the response. How can I create a data table from that?
e.g.
var jasonString = "..........";
var data = new google.visualization.DataTable(jasonString);
I am getting a json string from the response. How can I create a data table from that?
e.g.
var jasonString = "..........";
var data = new google.visualization.DataTable(jasonString);
You can do:
According to this page it says you can just put the JSON response directly into
google.visualization.DataTable
You can use the function arrayToDataTable