Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
After connecting all shapes try to remove particular shape throwing connectors undefined issue .Leads to flying off shapes issue.
Attached video and screenshot kindly check it.
<a tooltip="Delete" placement="top" (click)="deletechart()" [ngClass]="showselectedtab == true ? 'enable' : 'disable'">
<span><i class="fa fa-trash-o" aria-hidden="true"></i></span>
</a>
deletechart(){
//this.diagram.remove();
if (this.diagram.nodes.length > 0) {
for (let i = this.diagram.nodes.length - 1; i >= 0; i--) {
let node = this.diagram.nodes[i];
this.diagram.remove(node[i]);
}
}
}