Normally the google charts library is loaded as follows, which works fine:
google.load('visualization', '1', {packages: ['corechart']});
var data = new google.visualization.arrayToDataTable(v);
var chart = new google.visualization.LineChart(elm[0]);
chart.draw(data, options);
Now I want to switch to a frozen version of the corecharts. The docs state this is to be done as follows:
google.charts.load('41', {packages: ['corechart']});
@see https://developers.google.com/chart/interactive/docs/library_loading_enhancements
Problem:
Using this, I'm getting the error in javascript that google.visualization is not defined.
So, how do I have to load the frozen version?