【发布时间】:2020-04-02 10:23:20
【问题描述】:
我正在尝试在导出属性的 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!');
},
},
},
}
但是这 2 个按钮没有显示。这里可能缺少什么逻辑? Stackblitz
【问题讨论】:
标签: javascript angular highcharts angular-highcharts