简体   繁体   中英

Graphvis - Horizontal instead of Vertical Hierarchy?

I'm new to Graphvis, but I love it. I am mapping my JavaScript code, and so far I have:

digraph G {
  graph [fontsize=24]
  edge [fontsize=24]
  node [fontsize=24]
  ranksep = 1.5
  nodesep = .25
  edge [style="setlinewidth(3)"]
  a[label="$scope.$on(\"playing\")"]
  b[label="$scope.app.adjust"]
  c[label="$scope.app.beforeProceeding"]
  b->c
  a -> playingOrStopped
  HowToShowOp -> image_btn_array
  playingOrStopped -> image_btn_array
}

This gives me a nice diagram in http://magjac.com/graphviz-visual-editor/ however the diagram flows from top to bottom. Does anyone know how to make it flow from left to right instead?

Graphvis可视化编辑器

I found the solution here: https://graphviz.org/doc/info/shapes.html rankdir=LR

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM