The base class for components used to render ports. You must extend this component if you use a component for rendering
ports. Your extension of this component needs to declare a constructor that takes an ElementRef. When you call the port
component you need to pass the port's backing data as obj and its parent node/group component as parent.
The base class for components used to render ports. You must extend this component if you use a component for rendering ports. Your extension of this component needs to declare a constructor that takes an
ElementRef
. When you call the port component you need to pass the port's backing data asobj
and its parent node/group component asparent
.Note that you cannot mix this and LegacyBaseNodeComponent. This component expects its parent to be a BaseNodeComponent or BaseGroupComponent.
Note also that if you implement
ngOnInit
orngAfterViewInit
you must call the superclass implementation from within your method implementation.