I am working on the angular2 highcharts. For the call back function i added (load) in the html like
<chart [options]="options" (load)="FillTextCenter($event.context)"></chart>
After adding the load for the callback. I got the following error in my console window.
Maximum call stack exceeded error.
I tried to fix it.But i can't able to find.
Below codes are i tried but doesn't work.
Html file:
<chart [options]="options" (load)="FillTextCenter($event.context)"></chart>
Ts file:
options: Object;
FillTextCenter(chart) {
this.options = chart;
}