JS charts suddenly stopped working for me as well.

Explicitly loading version 46 instead of current fixed things for us.

Version 47 though came out in January, why would this only start affecting 
people today?

On Monday, February 10, 2020 at 1:21:20 PM UTC-5, Dustin Saunders wrote:
>
> My JS for charts in my application suddenly stopped working.  Here's a 
> sample:
>
> data = new google.visualization.DataTable();
>         data.addColumn('string', 'A');
>         data.addColumn('string', 'B');
>         data.addColumn('number', 'C');
>         data.addColumn('number', 'D');
>         data.addColumn('string', 'E');
>         data.addColumn('string', 'F');
>         data.addRows(chartData); 
>         data.sort({ column: 2, desc: true });
>         data.addColumn({ 'type': 'string', 'role': 'tooltip', 'p': { 
> 'html': true } });
>         data.wg.forEach(function (a) {
>             a.c[6].v = 'G';
>         });
>
> And the error I get is:
>
> Uncaught TypeError: Cannot read property 'forEach' of undefined
>     at <anonymous>:11:17
>
>
>
> It looks like the response has changed from *data.wg * to *data.Hg *?
>

-- 
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/9da91510-0cd6-451f-8349-0006706809f8%40googlegroups.com.

Reply via email to