我想更改从Highcharts 2.3.5导出下载的文件的文件名,但我无法这样做。我试图改变它但没有成功。 fiddle link
我尝试更改为chart_new_name,但它只下载了一个名为chart的文件。[required extension(png,jpeg,pdf,svg)]。
exportChart: function (a, b) {
var c = this.options.exporting,
d = this.getSVGSH(l(c.chartOptions, b)),
a = l(c, a);
e.post(a.url, {
filename: a.filename || "chart"+_newname,
type: a.type,
width: a.width,
scale: a.scale || 2,
svg: d
})
仅下载图表。[png,jpg,pdf]但我需要它来下载chart_newname。[png,jpg,pdf]
答案 0 :(得分:2)