I am new to Angular and was trying to implement below. I have created a data object in Angular component
@..
...
export class MyComponent{
drilldownDataSeries : {
's1' : {
...
},
's2' : {
...
}
}
then want to use this object in drilldown event of chart object. Setting up the chart options in ngOnInit().
this.chartOptions = {
chart :{
events : {
drilldown : function(e){
//** here i want to use drilldownDataSeries object in the callback function
}
}
}
}```
here i want to use drilldownDataSeries object in the callback function.