i am using Google Dashboard's table functionality, i want to assign value of id to tr of each row that is created, i have array as follows
var data = google.visualization.arrayToDataTable([
['Name', 'Donuts eaten','id'],
['Michael' , 5,'1'],
['Elisa', 7,'2'],
['Robert', 3,'3'],
['John', 2,'4'],
['Jessica', 6,'5'],
['Aaron', 1,'6'],
['Margareth', 8,'7']
]);
var table = new google.visualization.ChartWrapper({
'chartType': 'Table',
'containerId': 'chart2',
dataTable: data,
'options': {
'width': '500px'
}
});
table.draw();
I am still unable to figure out if there is some way to bind values to DOM elements any help will be appreciated.
Here's one solution, using JQuery:
And to remove the ID column:
With sorting taken into account: