I'm in over my head. I am using chart wrappers to draw the charts. I am giving them a containerId at this time. Then I am creating a div that it sits inside of. Do I scrap that to call the DataTable#getValue method or is that something I do inside of the chart wrapper? When I set up the chart wrapper to call the data table, it will import numbers into my dashboard, but I have a flip number as a jpg associated with each real number, and I was trying to bring those over from the spreadsheet. I imagine that there is a much better way to do what I am trying to do.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></meta>
<title>Home Page</title>
<!--Load the AJAX API-->
<script type="text/javascript">
//Load the Visualization API and the ready-made Google table visualization
google.load('visualization', '1', {'packages':['corechart']});
</script>
<script type='text/javascript'>
function drawF() {
// Define the chart using setters:
var wrap = new google.visualization.ChartWrapper();
wrap.setChartType('Table');
wrap.setContainerId('flipnumbers');
wrap.setOptions({'title':'Total Clients','width':480,'height':410,});
wrap.draw();
wrap.getChart();
}
function drawVisualization() {
drawF ();
}
google.setOnLoadCallback(drawVisualization);
</script>
</head>
<body>
<div id="flipnumbers" style="position:absolute;left:10px;top:0px;border:5px black solid;border-radius:25px; -moz-border-radius:25px;height:420px;width:500px;padding:6px;"></div>
</div>
</div>
</body>
</html>