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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

2
Votes

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]);
      }
    }
  }


Can you please check and update this.