Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
536 views
in Technique[技术] by (71.8m points)

graphviz - size of node with shape=circle

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?

question from:https://stackoverflow.com/questions/1265996/size-of-node-with-shape-circle

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...