我使用过这些选项。
exporting: {
enabled: false,
allowHtml:true
}
这是我的导出功能。
export(type: any) {
this.graph.exportChart({ type: type });
}
答案 0 :(得分:0)
如果您只想导出(添加标题),请使用
exporting: {
chartOptions: {
chart: {
events: {
load: function() {
var dynamic = document.getElementById('dynamic').value
this.setTitle({
text: dynamic
});
}
}
},
title: {
align: 'right',
}
}
},