安装
安装graphviz 2.38版本
控制面板在变量path中增加E:\software\Graphviz\bin
example.dot代码
digraph SignalPathway {
node [fontname="SimHei"];
edge [fontname="SimHei"];
// 定义节点形状
node [shape=circle];
// 定义节点
CellA [label="细胞 A"];
CellB [label="细胞 B"];
SignalMolecule [label="信号分子"];
// 定义边,表示信号传递
CellA -> SignalMolecule [label="分泌"];
SignalMolecule -> CellB [label="接收"];
}
命令行
dot -Tpng example.dot -o signal_pathway.png