entviz icon indicating copy to clipboard operation
entviz copied to clipboard

overlapping nodes and edges for more complex relations

Open bodokaiser opened this issue 3 years ago • 1 comments

Hi,

the default settings of vis.js used by entviz produces overlapping edges and nodes for more complex relations:

Screen Shot 2022-08-20 at 10 38 30

(I censored the names because this is from work).

I tried to play around with the physics settings inside the HTML produced by entviz but did not find a solution.

bodokaiser avatar Aug 20 '22 08:08 bodokaiser

I ended up changing the layout hierarchical layout to false. This allowed me to move around the boxes.

layout: {
  improvedLayout: true,
  hierarchical: {
    enabled: false,
    levelSeparation: 250,
  },
},

hi2gage avatar Sep 08 '23 07:09 hi2gage