Team,I started getting this java script error while i am trying to load the chart. It was always working but recently it stopped working. Does anyone have any idea about this issue with Google charts.
--
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 google-visualizati...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/77c7b105-608c-490b-b06a-b0eaa37cef5ao%40googlegroups.com.
| This is how i am loading the library. Please let me know what is the problem. <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> | |
| <script type='text/javascript'> | |
| google.charts.load('current', {packages: ['corechart']}); | |
| google.charts.setOnLoadCallback(drawVisualization); | |
| function drawVisualization() { | |
| var data = google.visualization.arrayToDataTable([ | |
| ['EventDate', '3M E coli'],['09/29/11',767],['10/25/11',133],['11/28/11',667],['01/12/12',467],['02/29/12',133],['04/25/12',67],['05/30/12',233],['06/27/12',300],['07/30/12',300],['08/30/12',133],['09/29/12',133],['11/30/12',0],['12/31/12',67],['01/30/13',67],['02/28/13',200],['07/30/13',200],['08/28/13',200],['02/23/14',400],['04/05/14',367],['04/27/14',233],['09/19/14',67],['10/24/14',0],['11/14/14',0],['01/29/15',33],['02/26/15',200],['03/17/15',33],['04/23/15',67],['08/25/15',100],['10/13/15',633],['10/13/15',633],['11/05/15',367]],false);var options = { title : '3M E coli value by Event Date', vAxis: {title: '3M E coli'}, hAxis: {title: 'Event Date'}, seriesType: 'graph', series: {3: {type: 'area'}} }; var chart = new google.visualization.ComboChart(document.getElementById('chart_line')); chart.draw(data, options); } </script> |
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJNmvAcN5LYvus-P01WN2fHnKuUuHyM4EYqoeSA%3D392sNw%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/CAMfFaNwoTHEj3uQvrzhOXvBABdHww1kVC2w3kzuEzzuq0EhF5Q%40mail.gmail.com.