This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//jsonData contains data in the appropriate format | |
var json_table = new google.visualization.Table(document.getElementById('table_div_json')) | |
var json_data = new google.visualization.DataTable(jsonData, 0.6); | |
json_table.draw(json_data, { | |
showRowNumber: true | |
}); |