I am building an angular application in which I need to integrate a graph visualization tool.
I had made use of HTML <embed> tag
to integrate that graph into my application.
It works super fine.
What I need is, When I click on the embedded graph, I need to trigger event click on that particular element.
Is that possible ? Do we have an option to perform click action on the third party embedded elements.
I had made use of,
- jQuery's contain function with find selector,
- Angular's inbuilt @ViewChild, ElementRef, TemplateRef,
- Javascript's default document querySelector, querySelectorAll, getElementById..,
No luck, not able to trigger event click.
Is there any alternative that you can suggest ?