首页 > 解决方案 > AmCharts 4 - 使用 API 时如何设置导出的名称?

问题描述

我有这个:

this.config = {};
this.chartId = 'myId';
this.chartType = am4charts.PieChart;

this.chart = am4core.createFromConfig(
  {
    this.config,
    this.chartId,
    this.chartType
  }
);

然后做:

this.chart.exporting.export('png');

导出文件的名称默认设置为“amCharts.png”。如何将名称设置为其他名称?

我尝试了以下但没有成功:

this.config = { export: { fileName: 'yay' } };
this.config = { fileName: 'yay' };

标签: amcharts

解决方案


好吧,事实证明很简单:

this.chart.exporting.filePrefix = 'yay';
this.chart.exporting.export('png');

推荐阅读