I have been searching for an answer to this problem for a day now and so far many similar issues but never the same, and all work around and solutions offered did not solve my problem.
So here is my problem. And I have tested my problem on Firefox, Safari, IE7, IE6 and Opera. So far only experience this problem in IE6, and I would like to figure out what the problem is so I could either fix the problem or have a work around for it. Here is a screen shot of the problem: http://lh5.ggpht.com/_hx4r1IGwWk0/SlNCAh-nhJI/AAAAAAAANVU/Sb0TS6CDv0U/ga.jpg What is happening is, in IE6 instead of drawing the graph, I am shown "No data available". and this is not true. I have all the data point correct and is displaying fine in any other browser I tested. Here are my data points: <script type="text/javascript"> google.load('visualization', '1', {packages: ['annotatedtimeline']}); function drawVisualization() { var data = new google.visualization.DataTable(); data.addColumn('date', 'Date'); data.addColumn('number', 'Hits'); data.addColumn('string', 'title1'); data.addColumn('string', 'text1'); data.addColumn('number', 'Goals'); data.addColumn('string', 'title2'); data.addColumn('string', 'text2'); data.addColumn('number', 'Views'); data.addColumn('string', 'title2'); data.addColumn('string', 'text2'); data.addRows(12); data.setValue(0, 0, new Date('2008, 08, 01')); data.setValue(0, 1, 1); data.setValue(0, 4, 0); data.setValue(0, 7, 1); data.setValue(1, 0, new Date('2008, 09, 01')); data.setValue(1, 1, 0); data.setValue(1, 4, 0); data.setValue(1, 7, 0); data.setValue(2, 0, new Date('2008, 10, 01')); data.setValue(2, 1, 1); data.setValue(2, 4, 0); data.setValue(2, 7, 1); data.setValue(3, 0, new Date('2008, 11, 01')); data.setValue(3, 1, 0); data.setValue(3, 4, 0); data.setValue(3, 7, 0); data.setValue(4, 0, new Date('2008, 12, 01')); data.setValue(4, 1, 0); data.setValue(4, 4, 0); data.setValue(4, 7, 0); data.setValue(5, 0, new Date('2009, 01, 01')); data.setValue(5, 1, 1); data.setValue(5, 4, 0); data.setValue(5, 7, 2); data.setValue(6, 0, new Date('2009, 02, 01')); data.setValue(6, 1, 1); data.setValue(6, 4, 0); data.setValue(6, 7, 1); data.setValue(7, 0, new Date('2009, 03, 01')); data.setValue(7, 1, 4); data.setValue(7, 4, 0); data.setValue(7, 7, 7); data.setValue(8, 0, new Date('2009, 04, 01')); data.setValue(8, 1, 0); data.setValue(8, 4, 0); data.setValue(8, 7, 0); data.setValue(9, 0, new Date('2009, 05, 01')); data.setValue(9, 1, 0); data.setValue(9, 4, 0); data.setValue(9, 7, 0); data.setValue(10, 0, new Date('2009, 06, 01')); data.setValue(10, 1, 0); data.setValue(10, 4, 0); data.setValue(10, 7, 0); data.setValue(11, 0, new Date('2009, 07, 01')); data.setValue(11, 1, 0); data.setValue(11, 4, 0); data.setValue(11, 7, 0); var chart = new google.visualization.AnnotatedTimeLine (document.getElementById('google_chart_0')); chart.draw(data, {'dateFormat':'MMMM yyyy', 'displayAnnotations':true, 'legendPosition':'newRow', 'scaleType':'maximize', 'thickness':'2', 'displayRangeSelector':false}); } google.setOnLoadCallback(drawVisualization); </script> <div id="google_chart_0" style="width: 950px; height: 200px;"></div> I am unable to isolate where the problem is coming from. and I hope someone else is able to pick out the problem that I am experiencing. And yes I have all the imports correctly set, else the chart itself would not show up. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en -~----------~----~----~----~------~----~------~--~---
