Hello,
I am trying to use the API with an Application that has a web viewer
built into it. I can pass a URL to the web viewer using a data url.
However the Hello World Example doesn't work.
The following code loads fine in safari, but not in my App.
<html xmlns="
http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<title>MOZI</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<head>
<script src="
http://www.google.com/jsapi" type="text/javascript"
charset="utf-8"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["piechart"]});
google.setOnLoadCallback(drawChart); // Set callback to run when
API is loaded
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Task');
data.addColumn('number', 'Hours per Day');
data.addRows(5);
data.setValue(0, 0, 'Work');
data.setValue(0, 1, 11);
data.setValue(1, 0, 'Eat');
data.setValue(1, 1, 2);
data.setValue(2, 0, 'Commute');
data.setValue(2, 1, 2);
data.setValue(3, 0, 'Watch TV');
data.setValue(3, 1, 2);
data.setValue(4, 0, 'Sleep');
data.setValue(4, 1, 7);
var chart = new
google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, {width: 400, height: 240, is3D: true, title:
'My Daily Activities'});
}
</script>
</head>
<body>
<div id="chart_div"></div>
</body>
</html>
I can tell by adding alerts that the Javascript dies on the "var data
= new google.visualization.DataTable();" line
I have a feeling that this has something to do with character sets but
I am not sure. Does anybody have any clues?
Todd