I have 4 tabs in an angular page (made of mat-tab), each tab contains one child component wrapping other smaller components to provide functionality of that tab page.
Now, from a child component in one of the tab, I want to take the user to 2nd or 3rd tab by a click of a button. How to navigate a user to a different tab from a child component sitting deep inside another tab?
I am not using router here, and I want to pass a data object to a child component sitting in different tab.