Hi,
I am unable to open the provided link. Has a fix been released for this issue?
Thanks it works now
Sorry to bug you again, but I still have problems with this.
Attached is a example.
The node has 2 ports.
Draw a connection from one of them and then from the other one.
Note how the first connector is hidden and only one connection is visible no matter how many connections are drawn.
It seems to be related to setting "ConnectorDefaults". Remove line 35 and the issue is not there.
How to I get this to work in combination with ConnectorDefaults?
public DiagramConnector GetConnector(Guid idGuid, Syncfusion.Blazor.Diagrams.Segments type = Syncfusion.Blazor.Diagrams.Segments.Orthogonal, DecoratorShapes decoratorShape = DecoratorShapes.Arrow)
{
//...
//...
//...
DiagramConnector diagramConnector = new DiagramConnector()
{
// set unique id to all the connectors
Id = idGuid,
//...
//...
//...
};
return diagramConnector;
} |
Thanks, I changed the code so I no longer set id in connectordefault and the issue is now solved