六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 102|回复: 0

Draw Graph using Graphviz ¶

[复制链接]

升级  11.33%

15

主题

15

主题

15

主题

秀才

Rank: 2

积分
67
 楼主| 发表于 2013-2-7 01:37:06 | 显示全部楼层 |阅读模式
First Graph Set up

   1. Download graphviz from here:

http://www.graphviz.org/Download..php

(for Mac, use this link:  http://www.graphviz.org/Download_macos.php)

   2. create a file named "sample.dot", using any text editor:

Jenny:~/temp/20100722$cat test.dot
digraph g {
node [shape=box]
A1 -> B1
A1 -> B2
A1 -> B3
}



   3. convert the dot file into png

      Jenny:~/temp/20100722$dot -Tpng test.dot > out.png

      Jenny:~/temp/20100722$open out.png


   4. check the png to see the diagram (attached)

Principles of Flow Chart Diagram

    * Always draw the first draft using PENCIL and PAPER

    * NO need to give all details,

    * Draw out the main flow only

    * As far as other could understand it, it's enough (it's for communication, not for display)

    * Use box and arrow lines mainly. If a flow is removed in later phase, use dotted lines.

References

http://en.wikipedia.org/wiki/DOT_language

http://www.graphviz.org/Documentation.php

http://www.orient-lodge.com/node/3408

http://www.graphviz.org/doc/schema/attributes.xml
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表