我有一个图表配置(使用 amCharts),其中为项目符号注册了一个 eventListener。此事件侦听器触发我的图表服务中的另一个函数。
我想在图表服务中的 eventListener 被触发后立即在我的组件中触发一个方法。我怎样才能最好地用 Angular 解决这个问题?
我的服务(chart.service.ts)如下所示:
getSingleChart(chart, amChart) {
// some configs
// ...
this.chart.updateChart(amChart, () => {
// some configs
// ...
amChart.addListener('clickGraphItem', this.bulletClicked);
});
// I don't know if this method is needed?
// The idea here was to execute the method in the component, if the bulletClicked pro is true
chartBulletClicked() {
return this.bulletClicked = true;
}
}
我的组件中应该触发的方法(chart.component.ts):
onBulletClicked() {
// ...
}