我正在研究angular2 highcharts。对于回调函数,我在html中添加(加载),如
<chart [options]="options" (load)="FillTextCenter($event.context)"></chart>
为回调添加加载后。我在控制台窗口中收到以下错误。
超出最大调用堆栈错误。
我试图解决它。但我无法找到。
下面的代码是我试过但不起作用。
Html文件:
<chart [options]="options" (load)="FillTextCenter($event.context)"></chart>
Ts档案:
options: Object;
FillTextCenter(chart) {
this.options = chart;
}