[我知道我可以使用menuItems:[“ downloadPNG”],但是我不想这样做,因为我想要的是与exporting.csv相同的样式。 https://api.highcharts.com/highcharts/exporting.csv.columnHeaderFormatter我在这里阅读有关exporting.csv的信息,但不知道如何省略CSV和ViewTable部分。基本上,我希望下图仅将PNG作为选项。 Dropdown menu
是,您需要省略配置文件上的其他选项,例如:
exporting: {
buttons: {
contextButton: {
menuItems: [
'downloadPNG'
]
}
},
默认导出配置是这样的:
exporting: {
buttons: {
contextButton: {
menuItems: [
'viewFullscreen', 'separator', 'downloadPNG',
'downloadSVG', 'downloadPDF', 'separator', 'downloadXLS'
]
}
},
您需要使用menuItemDefinitions
属性并定义自定义文本,例如:
exporting: {
menuItemDefinitions: {
downloadPNG: {
text: 'PNG'
}
}
}
实时演示: http://jsfiddle.net/BlackLabel/6m4e8x0y/4903/
API参考: https://api.highcharts.com/highcharts/exporting.menuItemDefinitions