2
In the Google Chart documentation there is the possibility to insert titles for a specific chart. But for Table Chart it does not work. Would anyone have an idea of how to pass to the component the display information of the title?
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 to me that Table Visualization does not support title!! It would have some form to include without being direct in html?