I have three nodes: Node1, Node2, and Node3 with edge connections as shown on the provided photo. My problem is that I have an edge connection on Node1 and Node3 (see red-colored edge) that I need to display a certain way as shown on the image.
I have tried curve-style of segments but I could not achieve the desired look, is there a way to manipulate the edge so that it looks like the red edge on the photo? Below is the style I applied so far. I am confused on what to put on segment-distances and segment-weights to achieve the edge look.
{
selector: '#edge3',
style: {
'width': 3,
'curve-style': 'segment',
'segment-distances': [-40, -40, -40, -40],
'segment-weights': [0, 1],
'source-endpoint': '-10 0',
'target-endpoint': '10 0'
}
}