diff --git a/demos/flowchart.html b/demos/flowchart.html index d7032a663..c2e1276fc 100644 --- a/demos/flowchart.html +++ b/demos/flowchart.html @@ -1540,6 +1540,30 @@
+ --- + title: Subgraph nodeSpacing and rankSpacing example + --- + %%{init:{'flowchart':{'nodeSpacing': 1, 'rankSpacing':'1'}}}%% + + flowchart LR + + X --> Y + + subgraph X + direction LR + A + C + end + + subgraph Y + direction LR + B + D + end ++