Hi Mark,

It appears I broke the dynamic loading of packages during the last release 
(July 1) for the jsapi loaded library.  Until that is fixed, you should 
either explicitly load the packages for 'table' and 'gauge', or better, I 
would recommend you switch to using the new gstatic loader and use the 
'upcoming' version which *does* now support dynamic package loading.  See 
the instructions at: 
 
https://developers.google.com/chart/interactive/docs/basic_load_libs#update-library-loader-code
 

So your code will look something like this:

(remove your loading of jsapi and call of google.setOnLoadCallback())

<script type="text/javascript" 
src="https://www.gstatic.com/charts/loader.js";></script>
<script type="text/javascript">
  google.charts.load('upcoming', {packages: ['corechart']});
  google.charts.setOnLoadCallback(drawVisualization);
</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 [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/45eefc87-2ef3-45a7-acff-fd8f6531dfda%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to