我正在尝试添加一个新按钮(在http://jsfiddle.net/fXHB5/3496/上找到示例) 我希望这个按钮有menuItems即,'column','line','bar','pie' 当我尝试将上面的menuItems添加到名为'testButton'的新按钮时,它将'exportButton'的menuItems更改为相同的
继承我的代码
exporting: {
buttons: {
testButton: {
menuItems: [{
text: 'Column',
onclick: function() {
//ChangeChart('column');
}
},
{
text: 'Line',
onclick: function() {
//ChangeChart('line');
}
}],
symbol: 'diamond',
x: -62,
symbolFill: '#B5C9DF',
hoverSymbolFill: '#779ABF',
_titleKey: 'printButtonTitle'
},
exportButton: {
menuItems: [,,,,{
text: 'Download CSV',
onclick: function() {
//DownloadJSON2CSV(dataSeries);
}
}]
} //exportButton ends here
} //buttons ends here
} //exporting ends here