Tagged Questions
Neato is a program in the graphviz toolkit for generating visual layouts of undirected graphs. Its layout heuristic creates virtual physical models and runs an iterative solver to find low energy configurations. Neato has a wide variety of uses, but its intended applications are in telecommunication networks, computer programming and software engineering.
6
votes
1answer
1k views
Prevent overlapping records using graphviz and neato
I am building a dot file to represent computer hardware and the physical connections to a network switch and displays. I have it looking ok when processed by the dot program but I think I really want ...
3
votes
2answers
962 views
Node layering in Graphviz
I'm creating a graph using Graphviz (compiled with neato). This graph contains many overlapping nodes which is perfectly fine. However, there is a group of large nodes which I prefer to always be on ...
3
votes
2answers
593 views
Hidden edges in Graphviz
I'm trying to create a graph using Graphviz (complied with neato), and I would like to place nodes in specific locations. For this, I'm specifying exact edge lengths for all edges. However, I don't ...
2
votes
1answer
297 views
How to force Graphiz tool (dot, neato,…) to accept some initial node placement
Is there a way to force any Graphviz tool (dot, neato,...) to accept some initial node placement and keep them in this position, while placing the remaining nodes using its standard algorithm ?
I ...
1
vote
2answers
163 views
Set node direction on graphviz
Suppose this code using neato:
graph sample {
layout=neato
overlap=false
splines=true
tailclip=false
headclip=false
A -- I
A -- J
A -- B
A -- H
A -- E
A -- K
B -- D
B -- C
...
1
vote
2answers
71 views
How to deal with densely connected graphs with neato
I have the following dot/neato file...
graph G
{
node [color=Red]
r01
r02
r03
r04
r05
r06
r07
r08
r09
r10
r11
node [color=Blue]
p01
p02
p03
p04
p05
p06
...
1
vote
1answer
322 views
Visualizing networks in GWT
I'd like to integrate network visualization into my GWT app.
I was thinking of using JUNG (check out this question) or neato to do the layout work and GWT-Graphics to do the drawing. It's also ...
0
votes
1answer
253 views
Simple linear arrangement in graphviz
I want to generate simple linear arrangements like this:
I think I am making this way too hard. I tried just hard coding the positions, but it is a little more complicated because I want splined ...
0
votes
1answer
162 views
Is there a way to set 'spring' force (make graph more cramed) in dot and/or neato?
I'm generating diagram with graphviz and I have a problem - there are several nodes that are very large - and large number of small nodes. I tried generating png with neato and fdp but both generate ...
0
votes
1answer
665 views
Using Graphviz's dot or neato to layout clusters
I'm trying to draw a deployment diagram of services and servers in our enterprise using dot. For the first iteration, I used neato to draw each service as a box and Need help with overlapping records ...
-1
votes
1answer
177 views
Multiple edges between nodes using neato
I'm using neato to output a graph, which works nicely. But neato merges edges between the same node pairs, and now I need to display multiple edges (arcs) with different properties (color, weight, ...