I am not able to call a function in ploatOption-> series > animation -> complete
Sample code is here https://stackblitz.com/edit/highcharts-angular-basic-variwide-faharz-ubhknv?file=src%2Fapp%2Fapp.component.ts
ploatOption: {
series: {
animation: { duration: 200,
complete: function() {
//Call ChartHighlight() here
} } } },
How can I call a function (in this case "ChartHighlight()" inside a complete function? Please refer to the sample code link.