Graphviz/Dot - how to mark all leaves in a tree with a distinctive color?

牧云@^-^@ 提交于 2019-11-30 15:54:33

问题


I have a script which prints a graph as .dot file. I would like to highlight all vertices of different degree with distinctive colors. Is it possible with Graphviz?

So, I am interested in the following:

For each i-degree vertex use color[i].

and as a special case, how to mark all leaves in a tree with a distinctive color? :

For each 1-degree vertex use color_A.

回答1:


Try the graphviz utility gvpr for writing graph scripts. In particular,

gvpr -c 'N[degree==1]{color="red"}'

You can enhance this to define an array (or associative map) and look up color[$.degree]

Stephen North



来源:https://stackoverflow.com/questions/6505982/graphviz-dot-how-to-mark-all-leaves-in-a-tree-with-a-distinctive-color

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!