Hi, the graph works on firefox and Chrome. But it does not show up on IE 8 
security level medium. From what I can see the JS creates the container, 
but can not create the timeline. this is an example on my new JS
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
<!-- meta http-equiv="refresh" content="120"/-->
<link rel="stylesheet" href="css/main.css" type="text/css">
<script type="text/javascript" src="
https://www.google.com/jsapi?autoload={'modules':[{'name':'visualization','version':'1','packages':['timeline']}]}"></script
>
<script type="text/javascript">
google.setOnLoadCallback(drawChart);
function drawChart() {
 var container = document.getElementById('Project_Schedule');
 var chart = new google.visualization.Timeline(container);
 var dataTable = new google.visualization.DataTable();
 dataTable.addColumn({ type: 'string', id: 'Position'});
 dataTable.addColumn({ type: 'string', id: 'Name'});
 dataTable.addColumn({ type: 'date', id: 'Start'});
 dataTable.addColumn({ type: 'date', id: 'End'});
 dataTable.addRows([

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to