I have encountered in which the visualization chart doesn't show due to this error:
Uncaught ReferenceError: ufa is not defined
This is the link where js called is located. Many thanks!
Make sure that your webpage calls to jsapi and google.load() once. Qouted below details from Google Developer's Site
You may be using the Google Loader incorrectly.
Only load jsapi once. No matter how many charts you have on your web page, you should have one and only one call like this:
<script type="text/javascript"src="https://www.google.com/jsapi"></script> // Do this ONCE.Ideally, call
google.loadonly once, with all the packages you'll need for your web page.
Do the loading of multiple packages like below,
<script>
google.load("visualization", "1", {packages: ["corechart", "timeline"]});
</script>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With