This code has worked without issue and now a few days ago it stopped? There 
is nothing in the error log and just on the div itself in Chrome it says 
"Cannot read property 'd' of undefined" and Firefox says "b is undefined".


<div id="curve_chart"></div>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js
"></script>

<script type="text/javascript">
google.charts.load('current', {'packages':['corechart', 'line']});
google.charts.setOnLoadCallback(drawChart);

function drawChart() {
var data = google.visualization.arrayToDataTable([
["Day", "New Signups (Week of Sep 14th)"],
['Mon', 148],
['Tue', 128],
['Wed', 133],
['Thu', 128],
['Fri', 133],
['Sat', 48],
['Sun', 0]
]);




var options = {
title: 'Company Performance',
//curveType: 'function',
legend: { position: 'bottom' }
};

var chart = new 
google.visualization.LineChart(document.getElementById('curve_chart'));

chart.draw(data, options);

}

</script>  

-- 
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-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/3e5d0e2e-faf1-48f5-85ee-df63dab9a02dn%40googlegroups.com.

Reply via email to