In the Google Chart documentation, you can insert titles for a specific chart. But for Table Chart does not work. Would anyone have an idea how to pass to the component the title display information?
Below is an example for graphics:
var options = {'title':'How Much Pizza I Ate Last Night',
'width':400,
'height':300};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
It seems that Table Visualization does not support title !! Would there be some way to include it without being html?