Anton

Results 1 comments of Anton

I found a solution: https://medium.com/@zainzafar/angular-load-external-javascript-file-dynamically-3d14dde815cb Load order is important: ``` this.dynamicScriptLoader .load('amcharts') // amcharts should be first .then(() => { this.dynamicScriptLoader .load('amchartsSerial', 'themeLight') .then(() => chartMaker()); }) .catch(error => console.error(error));...