As far as I can tell, I get the message with with my own visualisations using code like this:
<script type = "text/javascript" src = "http://www.google.com/jsapi"></ script> <script type = "text/javascript"> // With thanks to http://code.google.com/apis/visualization/. google.load("visualization", "1", {packages: ["corechart"]}); google.setOnLoadCallback(drawChart); function drawChart() { var data = new google.visualization.DataTable(); data.addColumn('string', 'Polling date time'); data.addColumn('number', 'pakistan'); data.addColumn('number', 'berry'); data.addColumn('number', 'queensland'); data.addColumn('number', 'postlethwaite'); data.addColumn('number', 'facebook'); data.addColumn('number', 'india'); data.addColumn('number', 'latvia'); data.addColumn('number', 'korea'); data.addColumn('number', 'egypt'); data.addRows(1); data.setValue(0, 0, '16 03 2011 @ 23 23'); data.setValue(0, 1, 114); data.setValue(0, 2, 1); data.setValue(0, 3, 59); data.setValue(0, 4, 7); data.setValue(0, 5, 16); data.setValue(0, 6, 90); data.setValue(0, 7, 2); data.setValue(0, 8, 55); data.setValue(0, 9, 296); var chart = new google.visualization.ColumnChart(document.getElementById('sampleVisualisation')); // Render SampleVisualisation. chart.draw(data, {width: 800, height: 640, tooltipTextStyle:{title: 'Keyword frequencies', titleTextStyle:{color: 'black', font: 'Arial', fontSize: 14}}, vAxis:{title: 'Keyword frequencies', titleTextStyle:{color: 'black', font: 'Arial', fontSize: 14}}, hAxis:{title: 'Polling date time', titleTextStyle:{color: 'black', font: 'Arial', fontSize: 14}}}); } </script> <div id = "sampleVisualisation"></div> Which used to work until recently. So I'm puzzled as to why it doesn't now. I'm using the version of IE9 released a few days ago, i.e. 9.0.8112.16421, and I believe this to be the actual release. And IE9 does not run in any form of compatibility mode as far as I know. I notice that I can use the interactive samples provided in the gallery such as the AreaChart but if I try the code provided in a web page of my own, it fails with the message. I suspect it is to do with versioning but any ideas? On Mar 16, 4:36 pm, Viz Kid <[email protected]> wrote: > Are you using the release candidate version 1.1 or the stable release 1.0? > When you say there is an issue with IE8, is it real IE8 or is it IE9 in IE8 > mode? And in IE9, which version are you using? > Does this happens consistently for you in all examples or only in some > specific cases? > > Viz Kid > > > > On Wed, Mar 16, 2011 at 12:11 PM, Mr Morgan <[email protected]> wrote: > > Hello > > > All of a sudden when I run web pages in Internet Explorer (versions 8 > > and 9) containing calls to the Google VizAPi, I find that I am given > > the following message: > > > Object doesn't support property or method 'createElementNS' > > > This does not happen in Firefox so it is presumably an IE thing. Can > > anyone shed any light on it? > > > Thanks > > > Mr Morgan. > > > -- > > 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. -- 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.
