Count of dots without labels

I have a graphic file for drawing using a "dot". I do not want to show any shortcut to any node. I am wondering how to do this without specifying a configuration for each node, since there are too many nodes on the graph.

+8
graphviz dot
source share
1 answer

Try pasting the following line before node declarations:

node[label=""]; 

Of course, nodes that have their label property defined will still appear on the label.

Also, if I remember correctly, at least one node form does not use a label:

 node[shape=point] 
+15
source share

All Articles