When using charts, how to remove the logo of js chart by amcharts

When using charts, how to remove the logo of js chart by amcharts.

To remove the logo, you must purchase the JS Chart license. More information here

1 Like

this.root = am5.Root.new(‘chartdiv’);
this.root._logo.dispose();

and for

var chart = am4core.create( ‘chartdiv1’, am4plugins_forceDirected.ForceDirectedTree);
if(chart.logo) {
chart.logo.disabled = true;
}