As explained here in fusion charts documentation, it doesn't work for angular. How can I implement this for the angular projects?
FusionCharts.options.license({ key: '', creditLabel: false, });
As explained here in fusion charts documentation, it doesn't work for angular. How can I implement this for the angular projects?
FusionCharts.options.license({ key: '', creditLabel: false, });
Please use the below code into your app.module.ts
FusionCharts.options['license']({ key: '', creditLabel: false, });
NB:If Still error occurs the please check your tsconfig.json and trun off the strict : true option.
Thanks