我只是想知道是否不可能订阅highmap(Angular 2 Typescript Highcharts/highmap)中的缩放事件,甚至不可能订阅鼠标滚轮滚动事件。
@HostListener('scroll', ['$event']) onScroll(e) { // do smth - but never reached }
只有在divs边界上滚动时才会调用它,但不会在地图中(它只放大/缩小,这没关系,但我想添加smth)
已尝试设置 (scroll)="yourFunction($event)"
(scroll)="yourFunction($event)"
你试过这个吗