相关疑难解决方法(0)

带点/ graphviz的方框图布局

我想用dot实现以下模型:

要在dot中实现的模型

到目前为止,我有这么多:

digraph G {
graph [rankdir = LR, splines=ortho]

  unit [shape=box, width = 2, height = 10];

  more_different_unit [shape=box, height=4];
  other_unit [shape=box, height=4];


  unit -> other_unit [label = "foo"];
  unit -> other_unit [label = "bar"];
  unit -> other_unit [label = "bar"];
  unit -> other_unit [label = "bar"];
  unit -> other_unit [label = "bar"];
  unit -> other_unit [label = "bar"];
  unit -> more_different_unit [label = "bar"];
  unit -> more_different_unit [label = "bar"];
  unit -> more_different_unit [label = "bar"];
  unit -> …
Run Code Online (Sandbox Code Playgroud)

dot graphviz graph-layout

15
推荐指数
1
解决办法
1万
查看次数

标签 统计

dot ×1

graph-layout ×1

graphviz ×1