以下是jsFiddle
适用于Chrome和Firefox,但是当我点击IE中的“下载”文字时, 菜单显示格式错误。任何想法为什么?这是可能需要的一些代码 调整。
exporting: {
buttons: {
contextButton: {
enabled: false
},
exportButton: {
text: 'Download',
// Use only the download related menu items from the default context button
menuItems: Highcharts.getOptions().exporting.buttons.contextButton.menuItems.splice(2)
},
printButton: {
text: 'Print',
onclick: function () {
this.print();
}
}
}