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>