How do I increase the height and witdth of a google chart table? No matter what I do, it does not change.
var tblOption = {
showRowNumber: true,
Height:500px, <<----Does not work
Width: 500px <<----Does not work
};
<!-- Step 4 - Instantiate the Chart class -->
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
var table = new google.visualization.Table(document.getElementById('vizTbl'));
<!-- Step 6 - Call chart.draw() function, passing in 'data' and 'options' -->
chart.draw(data, options);
table.draw(dataAn, tblOption);
<table>
<tr><td><div id="chart_div" style="width: 700px; height: 110px;"></div></td><td> </td><td><div id="vizTbl" style="width: 700px; height: 110px;"></div></td></tr>
</table>
Here's what an image of what it currently looks like:
