将图表导出为PDF / PNG时,是否有任何属性可以删除/隐藏注释按钮。 请参阅此小提琴link
exporting: {
buttons: {
contextButton: {
menuItems: [
{
textKey: 'downloadPDF',
onclick: function () {
this.exportChart({
type: 'application/pdf'
});
}
}]
}
}
}
答案 0 :(得分:1)
您需要在导出选项中将annotationsOptions.enabledButtons
设置为false。
exporting: {
chartOptions: {
annotationsOptions: {
enabledButtons: false
}
},