I currently set a cell's parent layer to use ParallelEdgeLayout when its clicked so stacked connectors that aren't visible can be seen. I would like to revert its layout to the default layout such that the connectors become stacked again.
this.layout = new this.mx.mxParallelEdgeLayout(graph);
this.layout.execute(edge.source.parent);
I want to remove the parallel layout when the canvas body is clicked
I will appreciate any ideas