I am utilizing Highcharts and would like to click on the legend upon loading.
With the use of Angular Ionic, how can I trigger a click on the .highcharts-legend-item
class within the ngOnInit() {}
method?
I am aiming to click on this class as soon as the page loads using Angular Ionic.
In JavaScript, you can achieve this with
$(.highcharts-legend-item).click();
, but I am unsure about how to do it in Angular Ionic.