Google Charts Not Loading On Intellij
I am trying to make a pie chart with Google Charts. When I put this code into an html file and run it on its own it works fine. This is what it looks like: However, when I run it
Solution 1:
I got it to work by modifying this line of code:
google.load('visualization', '1', {packages: ['corechart']});
To this:
google.load('visualization', '1', {packages: ['corechart'], callback : drawChart});
See Zanona's answer here for further explanation: google.load causes empty dom/screen
Post a Comment for "Google Charts Not Loading On Intellij"