python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
GraphViz DOT output: What are the 4-6 "pos" coordinates for an "edge"
I just started to experiment with GraphViz's "neato" command for
Kamada-Kawai graph visualization (solved using stress majorization).
I am particularly interested in extracting the laid out ...
user2153235
Votes: 0
Answers: 1
How to control ordering of root nodes?
I can control ordering of other nodes using ordering="in", but root nodes have no incoming edges to define the order by that way.
Eg:
digraph {
A -> B
C -> D
D -> X
B -> ...
user1318499
Votes: 0
Answers: 1
How to drop nodes with graphviz / gvpr
How can I use gvpr to drop all nodes except those with outdegree=="0" and their parent nodes?
So given
A > B
B > C
B > D
D > E
drop A only.

caduceus
Votes: 0
Answers: 1
How to style graphviz terminal nodes only?
I use the targetIncludes goal of the depgraph-maven-plugin to produce a dot file, and generate a graph.
When I configure the "dot" layout engine its obvious where the terminal nodes are - at...

caduceus
Votes: 0
Answers: 1