0

我有一个我在 grViz 中构建的图表,如下所示:


    grViz("digraph flowchart {
      node [fontname = Helvetica, shape = rectangle, fixedsize = false, width = 1]
      1 [label = 'Initial Cohort - ']
      2 [label = 'Left After Reduction - ']
      3 [label = 'Group 1']
      4 [label = 'Group 2']
      5 [label = 'Group 3']
      m1 [label = 'Excluded: \\l -Reason 1 - X \\l -Reason 2 - Y']
      node [shape=none, width=0, height=0, label='']
      p1 -> 2;
      {rank=same; p1 -> m1}
    
      edge [dir=none]
      1 -> p1;
      2 -> 3
      2 -> 4
      2 -> 5
    }")

在此处输入图像描述

我想在美人鱼中构建相同的图,但如果没有具有可见边界的子图,我似乎无法找到在 TD 图中制作侧向节点的方法

有任何想法吗?

4

0 回答 0