Re: [visualization-api] Re: Beta release of updated data for GeoChart

2020-06-17 Thread 'Daniel LaLiberte' via Google Visualization API
We are generally more restrictive now about use of strict JSON notation. One instance is using the autoload parameter on the loader URL. Another new case is the data returned by google.visualization.Query. I can't tell which instance you are encountering from that bit of stack trace (not without d

[visualization-api] Sudden google.visualization failure

2020-06-17 Thread Steve Wood
Suddenly: google.visualization.arrayToDataTable(my_data); returns "Cannot read property 'arrayToDataTable' of undefined" This problem is consistent across all browsers and incognito mode in Chrome. What can cause this? Is there a version change I need to address? -- You received this message

[visualization-api] Uncaught (in promise) TypeError: google.visualization.arrayToDataTable is not a function at drawVisualization

2020-06-17 Thread Deepak Alexander
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 Visual

Re: [visualization-api] Sudden google.visualization failure

2020-06-17 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Steve, Are you using the jsapi loader? The only change recently is that the jsapi loader is being redirected to the new loader. I bet you are also missing a call to google.setOnLoadCallback, and you have been lucky so far that the jsapi loader was able to load the visualization library quickl

[visualization-api] Google Charts pricing confusion

2020-06-17 Thread Hasan Rahman
Hi, Hoping someone can provide some clarity on this. I understand Google Charts is free. However a mapsApiKey is required and this is where I am unsure if my use of the product will be free or not. I am using GeoChart on a commercial website. Does this make any API requests which count as billa

Re: [visualization-api] Uncaught (in promise) TypeError: google.visualization.arrayToDataTable is not a function at drawVisualization

2020-06-17 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Deepak, I bet you are using the old jsapi loader, and possibly not using google.setOnLoadCallback. If so, see the instructions on updating how you load the visualization library at: https://developers.google.com/chart/interactive/docs/basic_load_libs#update-library-loader-code If this doesn'

Re: [visualization-api] Sudden google.visualization failure

2020-06-17 Thread Steve Wood
This may be the reason. I am using a utility that load the Google API as a built in feature. When i look at the executed code I do see it loading "the old way". So I will expirement and then submit a bug report to the utility maker to update their UX code. On Wednesday, June 17, 2020 at 12:05:3

Re: [visualization-api] Uncaught (in promise) TypeError: google.visualization.arrayToDataTable is not a function at drawVisualization

2020-06-17 Thread Deepak Alexander
This is how i am loading the library. Please let me know what is the problem. https://www.gstatic.com/charts/loader.js "> google.charts.load('current', {packages: ['corechart']}); google.charts.setOnLoadCallback(drawVisualization); function drawVisualization() { var data = google.visualizati

Re: [visualization-api] Uncaught (in promise) TypeError: google.visualization.arrayToDataTable is not a function at drawVisualization

2020-06-17 Thread 'Daniel LaLiberte' via Google Visualization API
Here is your chart working in a jsfiddle: https://jsfiddle.net/dlaliberte/mcxkr7oa/1/ Seems to work fine. I added a div with id="chart_line". On Wed, Jun 17, 2020 at 8:11 PM Deepak Alexander wrote: > This is how i am loading the library. Please let me know what is the > problem. > > https://www