From af4930e3f3643d91e3e3ea9d2f498e96674ef1d1 Mon Sep 17 00:00:00 2001 From: Knut Sveidqvist Date: Sun, 16 May 2021 08:21:28 +0200 Subject: [PATCH] Expandingh with of subgraphs whith title --- cypress/platform/knsv.html | 17 +++++++++-------- src/dagre-wrapper/clusters.js | 15 +++++++++++---- src/dagre-wrapper/index.js | 2 +- 3 files changed, 21 insertions(+), 13 deletions(-) diff --git a/cypress/platform/knsv.html b/cypress/platform/knsv.html index 8ae25a819..601515bb0 100644 --- a/cypress/platform/knsv.html +++ b/cypress/platform/knsv.html @@ -52,14 +52,15 @@ stateDiagram-v2 } -
-sequenceDiagram - Alice->>+John: Hello John, how are you? - Alice->>+John: John, can you hear me? - John-->>-Alice: Hi Alice, I can hear you! - John-->>-Alice: I feel great! - note right of John: Hello note reader -
+
+ %%{init:{"theme":"base", "themeVariables": {"primaryColor":"#411d4e", "titleColor":"white", "darkMode":true}}}%% + flowchart LR + + subgraph B1 + i -->f + end + A --> B1 --> B --> B1 +