我正在尝试在导出属性的 Angular Highcharts 折线图中添加 2 个自定义按钮
exporting: {
enabled: true,
buttons: {
customButton: {
text: 'Custom Button',
click: () => {
alert('You pressed the button!');
},
},
anotherButton: {
text: 'Another Button',
click: () => {
alert('You pressed another button!');
},
},
},
}
但是这两个按钮没有显示。这里可能缺少什么逻辑? 堆栈闪电战