Angular: Como inject child component class por ID via ViewChild

my_component_markup.html
<app-my-component #myId></app-dynamic-plot>
viewchild_inject.ts
@ViewChild('myid', {read: MyComponent}) myComponent!: MyComponent;

Echa un vistazo a artículos similares por categoría: Angular