Graphviz, developed by AT&T Research Labs, is the leading application for layout and drawing of graphs (objects comprised of vertices connected by edges). It includes the dot language, a complete syntax for graph description and a set of layout engines. Graphviz is free and open source.
0
votes
1answer
11 views
More compact hierarchical layout for dot / Graphviz
I produce the following PDF with dot:
My main problem is that the character size is too small even when printed on A3. Also it appears that the graph could be made more compact. E.g. the width is ...
0
votes
0answers
15 views
Hierarchical structure with DOT, generating SVG image with Graphviz
I'm trying to generate a graph with Graphviz using DOT language and apply Javascript to the graph.
The problem is to structure the nodes and edges at a specific level (i.e parents/childs).
The ...
0
votes
0answers
12 views
cmake --graphviz outout, without re-running configure/generate
Is it possible to (easily) get Cmake's "--graphviz=foo.dot" flag to generate the graphviz info but NOT run configure and generate? My call currently looks like this:
cmake -DARGS=123 -G"Platform ...
0
votes
0answers
15 views
How to draw edges at an angle in graphviz?
I am looking for a way to draw where i can specify angle at which edge is drawn from the node using graphviz tool.
Example is shown in picture below.
Here i have taken the line going to north as 0 ...
1
vote
0answers
30 views
Route edges away from nodes in DOT?
I am using DOT to generate a directed graph like the one shown below. I want all edges to have a south tailport and an north headport so all the edges originate from the bottom of a node and go into ...
0
votes
0answers
14 views
doxygen + graphviz full class diagrams
I have a problem documenting java, namely doxygen and graphviz are not making complete classes in diagrams
for example
anyone know how to make it show every method and every parameter in the method ...
1
vote
2answers
43 views
Graphviz as a library: Create multiple graphs results in error
I'm creating a small C-program that needs to create multiple graphs. The dot for these graphs are in a string, so I'm using agmemread instead of agread (I want to avoid creating temporary files). ...
0
votes
0answers
28 views
How to define the sort order of clusters in GraphViz?
I wrote a script that dynamically generates graphviz graphs, containing some clusters.
I'd like to define the sort order of clusters, since when I visualize the graph, clusters are not always in the ...
0
votes
1answer
93 views
Is there a graph drawing library for gtk?
I have a graph structure in my python program and i want to draw it into a gtk-window.
To solve this little problem I used PyGraphviz to get a .dot formatted string and then I draw with this with the ...
0
votes
1answer
38 views
How can I make my Graphviz graphs have large text?
I generate graphs based on some static code analysis I perform on old VB6 code.
Problem is the fonts are too small for printing, even on our A3 printer.
I've set the font size large but it doesn't ...
3
votes
1answer
39 views
Node graph layout library for incremental graphs
I'm looking for a library to which nodes and edges can be supplied and which generates a coordinate list of all the nodes laid out nicely. However, it should be possible to supply fixed positions for ...
2
votes
1answer
41 views
Force graphviz to preserve node positions
I have a graph that changes over time (normally, new nodes are added). I need to regenerate the graph several times, and want all of the nodes to stick where they have been. This partially works when ...
0
votes
0answers
18 views
Graphviz: place a node under all other nodes
digraph G {
graph [label = "TGH5 SDK\n\n\n", labelloc = t, labeljust = center,
fontname = Helvetica, fontsize = 18]
labeljust = center;
ranksep = .5;
node [shape = "box", ...
1
vote
1answer
41 views
Org Babel doesn't load Graphviz editing mode for dot sources
#+begin_src dot :file diagram.png
<some diagram code>
#+end_src
When I C-c ' on this block, the content opens in Fundamental mode (but I have Graphviz mode installed). How do I tell Org / ...
0
votes
0answers
22 views
Plot a clustered graph in Graphviz with fixed nodes positions
I need to draw the same graph with different clusters on it, so i want to draw it into a few separate files, and then merge them by overlapping the images.
But i need the graph itself to has the same ...
0
votes
1answer
43 views
How do I invoke the Graphviz GUI from the command line?
I am looking for a way to open a DOT file (.gz or .dot) in the GUI Graphviz viewer from the command line. So, if I run something like:
$ graphviz my_dot_file.gz
It should open the Graphviz ...
2
votes
1answer
47 views
Trying to visualize an abstract syntax tree in graphviz dot, and it's just way too wide. How to fix?
So I'm working on a language and I wanted to, mostly out of curiosity, see if I could visualize the abstract syntax tree of a file. After some looking around I found graphviz dot, converted my AST ...
0
votes
1answer
30 views
grahviz neato “failure to create cairo surface”
I am receiving this error:
>neato house.dot -Tgif -o house2.gif -Tdot -o x.dot
neato: failure to create cairo surface: out of memory
>neato -V
neato - graphviz version 2.28.0 (20110507.0327)
...
2
votes
0answers
35 views
Change edge placement from beneath to above nodes in Graphviz
It took me some time to make the graph below look like it does right now, and I'm almost satisfied. The one thing that still bothers me is that the connection between D and B should be above all nodes ...
0
votes
2answers
27 views
multiline graphviz node with math mode
I have a node which represents a multiline label in math mode. However, I failed to include the newline symbol \n into the node label. Here is my try
\begin{dot2tex}[neato,scale=.5,options=-t math]
...
1
vote
2answers
39 views
Is there a script or methodology to turn C# code into a graph representation?
Since Visual Studio only supports modeling of software (reverse engineering of a current design) does any one know or can anyone suggest of a way to take C# code and transform it into a graph ...
0
votes
0answers
31 views
Multiline tooltip for pydot graph
I would like to add multiline tool-tip for the nodes in the graph I am generating using pydot. Here is what I am doing:
node = pydot.Node('abc', style='filled', fillcolor='#CCFF00', fontsize=12)
txt ...
0
votes
0answers
31 views
Using ruby and graphviz on heroku with heroku-buildpack-multi
I'm trying to deploy my app on heroku. I use declarative_authorization with graphical visualisation.
I installed https://github.com/ddollar/heroku-buildpack-multi heroku config:set ...
0
votes
1answer
28 views
graphviz - compare graphic trees
I have to do a job with graphviz. I need to visualize the graphic representation of several trees, but in any case I have to compare two tree to see their differences: something like this, I have tree ...
0
votes
0answers
19 views
children order in graphviz tree
I have following tree:
digraph G {
subgraph cluster0{
37[label="+"];
42[label="a"];
44[label="b"];
47[label="*"];
46[label="c"];
49[label="d"];
...
0
votes
1answer
54 views
Vertically aligning a node joining subgraphs in Graphviz
I give the following input to Dot:
digraph G {
subgraph cluster1 {
fontsize = 20;
label = "Group 1";
A -> B -> C -> D;
style = "dashed";
}
subgraph {
O ...
0
votes
0answers
21 views
how to display labels in line with the edge within Graphviz
Graphviz 2.30 is used. Horizontal positioning for labels works out, but in a few cases a modified angle would be desired.
for instance - various values (angle) were used without any effect:
ABB ...
1
vote
0answers
50 views
mysql query to create graph using graphviz
I need to dynamically create a graph, from a mysql query which results change according to the user. I have worked with graphviz and found it works fine for me. I have created graphs before, using a ...
0
votes
0answers
31 views
Using GraphViz dll with C#
I was trying to implement this code (unfortunately, the website is down, so I had to dig in the Internet archive).
I get an error in RenderDot function:
PInvokeStackImbalance was detected
Message: A ...
2
votes
2answers
60 views
Rgraphviz: edge labels outside plotting region
I am trying to plot a Rgraphviz object with two edge labels. Unfortunately the labels fall outside the plot. Here is my example:
require('Rgraphviz')
set.seed(123)
g1 <- randomGraph(letters[1:10], ...
1
vote
1answer
52 views
Graph of Graphs in Graphviz
I have a collection of digraphs encoded in the DOT language. I want to construct a graph-of-graphs such that each node in the super-graph is one of these digraphs. Is there a way to do this within ...
0
votes
1answer
35 views
Software for visualizing very large graphs
I have a very large (about 205k edges and 200k nodes) graph of text nodes (names) that I would like to visualize using something like Graphviz.
The problem with running this on Graphviz (using sfdp) ...
0
votes
1answer
15 views
How to specify the thickness of edge in dotfile?
I'd like set the thickness of edge in dot file, but could not find the corresponding attribute, anyone know that ? Thanks
-1
votes
1answer
39 views
Is there any good tutorial for how to generate dotfile for graphviz? [closed]
I have a bunch of data and I'd like generate dot file for it and then feed the dot file to graphviz to visulize it. I found JGraphT may be a good option for me, but do not found too much tutorial ...
1
vote
0answers
27 views
Nesting nodes in GraphViz
I'm trying to draw bigraphs in GraphViz (something like this)
Is it possible to nest nodes directly in GraphViz?
If not is it possible to change the shape of a subgraph/cluster?
I have found a post ...
0
votes
0answers
19 views
Tk::GraphWiz Zooming
I've been trying to plot a connectivity graph using Tk::GraphWiz.
I have the following code:
use strict;
use warnings;
use Tk::GraphViz;
use Tk;
my $graph ='graph PathsOfPin {
a [label = ...
0
votes
0answers
91 views
CFA path diagram using Graphviz
Updated:
I am using Graphviz to produce a CFA path diagram. Using previous posts I have almost produced what i want but i need a little bit of help with a couple of refinements please:
I would like ...
1
vote
1answer
35 views
Graphviz: label on the left side
in case I use the following Graphviz code, a simple graph will be created
which shows the label on the right hand side.
digraph lable_on_the_right_side {
/* define nodes */
node ...
0
votes
1answer
53 views
Graphviz not generating gif
I have installed graphviz and trying to generate gif using java. Nothing is written to gif file. But if create a svg it works.
Could someone let me know how to do this ?
Regards
0
votes
1answer
40 views
How do I draw a pair of concentric circles with graphviz?
Something really simple, like a big circle 'A' and a smaller circle 'B' inside it. Surprisingly no examples have nested circles.
0
votes
0answers
48 views
function call history and graph in Matlab
I've been trying to get a tool/code that saves the function call history and somehow plots it. I have seen several tools (fdep.m, GraphViz's dot) but can't quite find what I am looking for. Before ...
0
votes
1answer
38 views
Pygraphviz xlabel position and color doesn't work
I am using pygraphviz to create graphs for my project. I am unable to figure out how to center the xlabel of nodes and also how to change the color of xlabel.
graph.add_node(row[3], ...
1
vote
3answers
190 views
What is the best way to draw large graph using graphvis
I need to draw large dataset on image, I used graphvis command lines with all available tools (dot, neato, twopi .. etc) but the result is not readable and contains overlapping.
What I need is ...
0
votes
2answers
44 views
Canviz example don't work
I've downloaded Canviz (it's a Javascript library for drawing graphs). I've unzipped the archive. I open, with Chrome, index.html, which is supposed to be an example. A "loading" message appears... ...
0
votes
0answers
26 views
Woking code gives error in another project
I'm trying to execute "dot" (a graph drawer thing from www.graphviz.org) form IronPython. Here is my code:
import clr
clr.AddReference('System.Core')
import System
...
1
vote
2answers
60 views
Custom Neo4j GraphViz Writer
I have an application which produces a GraphViz dot file for a subgraph of my Neo4j database. It works like a charm, but there is somewhat of an issue.
Right now, the title of each node is the node ...
-1
votes
1answer
24 views
Graphviz special characters
Could someone guide me how to construct
MV-123-1.3.2-23423GF
kind of strings using Graphviz API ?
Its creating separate circles for each token after -
GraphViz gv = new GraphViz();
...
0
votes
1answer
19 views
Line break with graphviz, HTML
I've created a graphviz table node:
<TR>
<TD COLSPAN="3" BGCOLOR="lightgrey">LineOne LineTwo</TD>
</TR>
I'd like to have Line1, Line2 in separate lines. I've tried ...
0
votes
1answer
45 views
Graphviz: Node internal orientation
The following graphviz code:
digraph g {
labelloc="t";
label="Feed creation process";
graph [
rankdir = "LR"
];
node [
fontsize = "16"
shape = "record"
];
edge [];
abc [shape=none, margin=0, ...
0
votes
1answer
90 views
GraphViz - generate graph on top of assorted list of nodes/edges with python?
I have a list of items that relate to each other, I know they end up building a graph but the data is not sorted in any way.
PMO-100 -> SA-300
SA-100 -> SA-300
SA-100 -> SA-200
PMO-100 -> ...



