python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
GraphViz Dot Prevent Ranks From Overlapping
I'm using graphviz to visualize an AST tree in a compiler project I'm doing but a big problem with this is that the trees can get quite large, with some nodes having a lot of children.
What this cause...

sushi
Votes: 0
Answers: 1
Is it possible to specify a cluster inside a subgraph
I would like to create several clusters inside a subgraph like the following :
subgraph sub {
rank=same;
subgraph cluster_test {
p4;
p5;
p6;
}
subgraph cluster...
Alexis Pister
Votes: 0
Answers: 1
graphviz: change color of some nodes
I am using NetworkX to parse a graph and graphviz to represent that same graph as an svg file. I am trying to color each node of my graph based on the name of the node such as:
if node.name == 'abc':
...
Pierre-Alexandre
Votes: 0
Answers: 1
Create a .dot graph of a C++ projects dependencies from the output of gcc -MG -MM
I'm trying to visualize the dependencies of a c++ project. I'd like to use standard tools: g++ to generate the dependencies, sed(?) to format, and graphviz/dot to and output a svg.
I'm invoking g++ wi...
cowlicks
Votes: 0
Answers: 1