Я пытаюсь добавить 2 пользовательские кнопки в Angular Линейный график Highcharts в свойстве экспорта
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 кнопки не отображаются. Что может быть здесь недостающим логи c? Stackblitz