You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: canvas_modules/harness/src/client/components/custom-canvases/react-nodes-mapping/mapping-container-node.jsx
+5-2
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,9 @@ const CONTAINER_GAP = 48;
32
32
constDEFAUT_NODE_WIDTH=400;
33
33
constDEFAUT_NODE_HEIGHT=30;
34
34
35
+
// Amount in pixels to move the ports over the nodes
36
+
constPORT_POS_INDENT=8;
37
+
35
38
36
39
classMappingContainerNodeextendsReact.Component{
37
40
constructor(props){
@@ -356,7 +359,7 @@ class MappingContainerNode extends React.Component {
Copy file name to clipboardExpand all lines: docs/pages/03.02.01-canvas-config.md
+3
Original file line number
Diff line number
Diff line change
@@ -111,6 +111,9 @@ This is a Boolean. The default is `false`. If set to `true` it changes the natur
111
111
#### **enableAssocLinkType**
112
112
This can be "Straight" or "RightSideCurve". The default it "Straight". This field changes the way association links are drawn on the canvas.
113
113
114
+
#### **enableLinksOverNodes**
115
+
This is a boolean. The default value is `false`. If set to `true` links are placed above nodes in the canvas. Hover over nodes/links would still have links above nodes if `enableLinksOverNodes` is set to `true`. This is useful if the ports are positioned within the boundaries of the node and the link lines need to be displayed to those positions.
0 commit comments