graphviz改变有向图中特定形状的方向

时间:2017-05-29 10:11:16

标签: orientation shape graphviz digraphs

我如何放置所有"平行四边形" [见我的代码]在带有graphviz dot langage的S盒子的顶部?

所以基本上输出应该看起来像一条直线,图中的所有M1 M2和Mn都是。

实际输出: enter image description here 期望的输出: enter image description here

digraph ER {

node [group=M; shape=parallelogram]; M1; M2; M_n;
node [group=I, shape=none]; "...";
node [group=V, shape=egg]; IV; V1; V2;
node [group=C, shape=box]; "S1";  "S2";  "S_n"; f;
node [group=F, shape=hexagon]; "FINAL";


    IV -> "S1";
    M1 -> "S1";
    "S1" -> V1;
    V1 -> "S2";
    M2 -> "S2";
    "S2" -> V2;
    V2 -> "...";
    "..." -> "S_n";
    M_n -> "S_n";
    "S_n" -> f;
    f -> "FINAL"

    rankdir=LR;
}

1 个答案:

答案 0 :(得分:1)

rank属性允许将同一subgraph的两个(或更多)节点约束到相同的等级。考虑到这一点:

digraph ER {

rankdir=LR;

node [shape=none]; "...";
node [shape=egg]; IV; V1; V2;
node [shape=box]; f;
{rank=same; "S1"; M1[shape=parallelogram];}
{rank=same; "S2"; M2[shape=parallelogram];}
{rank=same; "S_n"; M_n[shape=parallelogram];}
node [shape=hexagon]; "FINAL";

    IV -> "S1";
    M1 -> "S1";
    "S1" -> V1;
    V1 -> "S2";
    M2 -> "S2";
    "S2" -> V2;
    V2 -> "...";
    "..." -> "S_n";
    M_n -> "S_n";
    "S_n" -> f;
    f -> "FINAL"

}