graphviz - size of node with shape=circle -
I am trying to set the size of nodes in this way:
Size = circle, width = .5, label = "controller", style = fill, fillcolor = "# 8EC13A"];
But all three nodes are in different sizes, how can I set a fixed size?
From the DOT guide on page 4 it says the following:
When drawn, the actual size of a node is the most requested size and the required area for its text label, unless the is fixed = true , then the width and height values are applied. .
In this way you need to add fixedsize = true to your code
Comments
Post a Comment