Re: [visualization-api] Chart code suddenly stopped working

2020-02-11 Thread Dustin Saunders
I'm mostly C# so I guess its surprising to me that the internal properties are subject to change so frequently but that explains why I couldn't find any documentation about it. I'll change the code to use for loops to iterate and use setCell()-- thanks for the reply. On Tuesday, February 11,

Re: [visualization-api] Chart code suddenly stopped working

2020-02-11 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Dustin, If you are using internal properties of the DataTable instance, they are certain to be changed with each new release, so you should try to find another way to achieve your goal that only uses the public API. Even old releases might need to be updated, although we would be more likely

[visualization-api] Chart code suddenly stopped working

2020-02-10 Thread Dustin Saunders
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');