我使用angular2-highcharts,我想在本地函数中调用组件方法,但我不知道它是如何可能的。
你可以帮帮我吗? 一个掠夺者的例子: http://plnkr.co/edit/gOLGytp9PZXiXvv2wv1t?p=previewimport { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { NgModule, Component } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { ChartModule } from 'angular2-highcharts';
@Component({
selector: 'my-app',
styles: [`
chart {
display: block;
}
`],
template: `<chart [options]="options"></chart>`
})
class AppComponent {
constructor() {
this.options = {
chart: {
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
type: 'pie'
},
title : { text : 'simple chart' },
plotOptions: {
series: {
turboThreshold:3000,
cursor: 'pointer',
point: {
events: {
click: function() {
console.log(this);
// I want to call a component method here
}
}
}
}
},
series: [{
name: 'Brands',
colorByPoint: true,
data: [{
name: 'Microsoft Internet Explorer',
y: 56.33
}, {
name: 'Chrome',
y: 24.03,
sliced: true,
selected: true
}, {
name: 'Firefox',
y: 10.38
}, {
name: 'Safari',
y: 4.77
}, {
name: 'Opera',
y: 0.91
}, {
name: 'Proprietary or Undetectable',
y: 0.2
}]
}]
};
}
options: Object;
methodToCall(){
console.log("Method called");
}
}
@NgModule({
imports: [BrowserModule, ChartModule.forRoot(require('highcharts'))],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
class AppModule { }
platformBrowserDynamic().bootstrapModule(AppModule);
答案 0 :(得分:5)
要访问click事件返回的信息并且还可以访问组件方法,您可以执行以下操作:
plotOptions: {
series: {
turboThreshold:3000,
cursor: 'pointer',
point: {
events: {
click: function(e){
const p = e.point
this.myComponentMethod(p.category,p.series.name);
}.bind(this)
}
}
}
},
我希望这会有所帮助。
答案 1 :(得分:1)
您只需要通过箭头函数替换匿名函数或将其绑定到组件:
point: {
events: {
click: () => {
console.log(this);
// I want to call a component method here
}
}
}
或
point: {
events: {
click: (function(){
console.log(this);
// I want to call a component method here
}).bind(this)
}
}
甚至:
point: {
events: {
click: this.myComponentMethod.bind(this)
}
}
答案 2 :(得分:0)
我知道我迟到了,但他可能会帮助别人。 angular2-highchart包提供对series event的访问权限。
<chart [options]="options">
<series (click)="methodToCall($event)"
</series>
</chart>
<p>Series-Clicked={{data}}</p>
JS代码。
methodToCall(e){
console.log("Method called");
this.data = e.originalEvent.point.name
}
以下是更新后的Plunk。