使用侧向箭头创建美人鱼图

时间:2020-07-11 07:40:37

标签: r mermaid

我在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
    }")

enter image description here

我想在美人鱼中构建相同的图,但是在没有具有可见边框的子图的情况下,我似乎找不到找到在TD图中创建sidways节点的方法

有什么想法吗?

0 个答案:

没有答案