From a2575449eab8113ed70e7ea09bd74c2c57195cb1 Mon Sep 17 00:00:00 2001 From: Benjamin Ricaud Date: Sun, 21 Oct 2018 11:56:38 +0200 Subject: [PATCH] add curved edges info --- scripts/graphConf.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/graphConf.js b/scripts/graphConf.js index a0f2b0e..8a0b882 100644 --- a/scripts/graphConf.js +++ b/scripts/graphConf.js @@ -39,4 +39,6 @@ const node_position_y = 'graphexpy' const default_edge_stroke_width = 3; const default_edge_color = "#CCC"; const edge_label_color = "#111"; +// Choose between curved (true) and straight edges (false). +// If set to false, multiple edges between 2 nodes will all be straight and overlap. const use_curved_edges = true;