-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
enhancementNew feature or requestNew feature or requestlarge-effortWill be a large effort to fixWill be a large effort to fix
Description
See following example
Global
autoLayout: true
animated: true
markerEnd:
type: arrowclosed
strokeDasharray: 2 2Nodes
- shape: comunica
- shape: rmlio
- shape: solid
- shape: cylinder
label: DB1
- shape: cylinder
label: DB2Edges
- source: DB1
target: rmlio
edgeThickness: 5
- source: DB2
target: rmlio
edgeThickness: 5
- source: rmlio
target: solid
- source: solid
target: comunica
- source: DB2
target: comunica
animated: true
edgeThickness: 2This image is almost perfect, but I want to last edge to change direction. Switching source and target of the latest element however totally messes up the autoLayout
I figured it might have been because the edge handlers are by default right for source and left for target (in horizontal mode), so I changed that too, last element is now
- source: comunica
target: DB2
sourceHandle: left-source
targetHandle: right-target
animated: true
edgeThickness: 2but no :(
I can then move the comunica node to have almost the same layout as originally, but I'm wondering if there's a smarter layouting idea we can do, eg by reordering the nodes based on the edges before doing the layout? reordering the nodes changes the layout only when there's a 'reverse' edge somewhere.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestlarge-effortWill be a large effort to fixWill be a large effort to fix


