size of node with shape=circle

▼魔方 西西 提交于 2019-12-06 16:36:33

问题


i'm trying to set the size of the nodes this way:

controller[shape=circle,width=.5,label="Controller",style=filled,fillcolor="#8EC13A"];

But all three nodes are with different size. How can i set fixed size?


回答1:


From the DOT Guide http://www.graphviz.org/pdf/dotguide.pdf on page 4 it says the following:

When drawn, a node’s actual size is the greater of the requested size and the area needed for its text label, unless fixedsize=true, in which case the width and height values are enforced.

Thus you simply need to add fixedsize=true to your code



来源:https://stackoverflow.com/questions/1265996/size-of-node-with-shape-circle

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