When using charts, how to remove the logo of js chart by amcharts.
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;
}