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
0answers
5 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
14 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
12 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
22 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
17 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
39 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
33 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
0answers
20 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
12 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
25 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 ...
0
votes
0answers
15 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
17 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
61 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 ...
0
votes
0answers
33 views
R hyperdraw set font size of hypergraph nodes
I am using the hyperdraw package from Bioconductor to visualize a hypergraph. I would like to control the font size of the plotted nodes but I don't know how to. Here is a sample graph:
...
1
vote
1answer
26 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
37 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
30 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
42 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
27 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
votes
0answers
19 views
How to draw a commit log graph with graphviz
How to draw a commit log graph with multiple branches and merges using graphviz or plantuml? I have trawled the documentation and experimented with tables and aligning but nothing comes close
1
vote
3answers
167 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
20 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
39 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
21 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
13 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
37 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
61 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 -> ...
0
votes
2answers
67 views
View models of type “.xml” or “.dot” files within Java JFrame
I wanted to know how to produce a JFrame that would visually show a model that is formatted in ".xml" or ".dot" format.
I know .dot format is generally used by Graphviz to view the graphs created but ...
1
vote
2answers
62 views
Problems using graphviz as a library
I'm trying to use graphviz as a library for a C++ project, following the libguide provided here. However I'm having problems even compiling the examples in the appendix. When I try to compile demo.c ...
0
votes
1answer
50 views
Graphviz Sharing Attributes between Nodes or Edges
I'm using Graphviz (namely Dot) to draw up a state machine for a Hypermedia API I'm planning on building. In my graph, nodes represent states, while edges represent links. What I'm trying to do is ...
0
votes
1answer
45 views
Linking to a dynamic library installed with Homebrew using gcc?
I am trying to compile a program with GCC 4.2.1 that requires a library that was installed with Homebrew on Mac OS X (10.8.3). It's a simple C program that uses gvc.h, which is a library that comes ...
0
votes
1answer
31 views
Display image from Graphviz without creating an intermediate file?
I would like to display a graph without writing a file first.
Suppose I have a command foo that produces this on standard out:
digraph foogrph {
a -> b;
a -> c;
}
What I would like ...
0
votes
1answer
14 views
Keep nodes within specific clusters
I've been looking over the GraphViz docs and stackoverflow for the last hour, but can't find a solution to this problem. I have several clusters in my dot file, and I need certain nodes to stay within ...
0
votes
0answers
16 views
Removing Nodes With Degree Zero using Graphviz4Matlab [duplicate]
I am supposed to plot a graph in matlab through an adjacency matrix using the GraphViz4Matlab - http://code.google.com/p/graphviz4matlab/. The problem is that the graph I plot is pretty huge and is ...
0
votes
1answer
58 views
Graphviz for Matlab : Deleting nodes which have no edges
I am using Graphviz for matlab.Is there a way to delete nodes which have no edges in the final graph, since my graph is very big( ~9100 nodes) and any other help on representing the graph in a better ...
0
votes
2answers
42 views
Issue with graphviz never completing
Can someone help me figure out why the following graph never generates in dot? I think the problem has something to do with the headport and tailport. It works if I take those out, but ideally I want ...
0
votes
1answer
168 views
pydot and graphviz error: Couldn't import dot_parser, loading of dot files will not be possible
When I run a very simple code with pydot
import pydot # import pydot or you're not going to get anywhere my friend :D
graph = pydot.Dot(graph_type='graph')
for i in range(3):
edge = ...
2
votes
0answers
58 views
Which graphviz library API is recommended for a C++ project that needs to generate some graphs?
I know there are several versions of Graphviz as a library. But I'm a bit confused as to which one is considered current + recommended. I would like to generate and display a few graphs from a linux ...
1
vote
0answers
66 views
Shorten execution time and file size of SVG graph generation
My program generated a dot file a.dot, then I use dot -Tsvg a.dot > a.svg
But there two problems about using the transformation script:
Is there way to shorten the execution time of the ...
0
votes
0answers
142 views
Javascript library to draw dependency diagram
I would like to be able to generate a dependency diagram showing which software component is dependent on which using Javascript libraries.
Requirements:
automatic layout from top, down
arrows ...
0
votes
0answers
27 views
How to draw multiple edges between same set of nodes in PyGraphviz? [duplicate]
Whenever I try to draw multiple edges between two same nodes, Pygraphviz only considers the latest edge. Is there any way to bypass this?
Example Code:
import pygraphviz as pgv
A = pgv.AGraph()
...
0
votes
1answer
28 views
Duplicate edges created in Pygraphviz
I am using PyGraphviz to generate a hierarchical tree like structure with several levels and nodes. Whenever I try to create an edge between two nodes (I have unique index assigned to every node in ...
1
vote
1answer
54 views
graphviz embedded url
I'm trying to figure out how to generate a graph with hyperlinks you can click to access more detailed information on each node / edge in the graph. I found that graphviz has this ability using the ...
2
votes
1answer
78 views
Graphviz subgraphs looking like record shaped nodes
I'm trying to generate graph for GStreamer applications where are many nested bins. Each bin have some elements but bin for parent bin looks like any other common element that have pads (sinks and ...
2
votes
1answer
75 views
How can I dump an abstract syntax tree generated by gcc into a .dot file?
I think the question's title is self explanatory, I want to dump an abstract syntax tree generated by gcc into a .dot file (Those files generated by Graphviz) because then I want to view it in a .png ...
3
votes
1answer
87 views
Sphinx graphviz inheritance diagram increase node size
I'm trying to generate an inheritance diagram in Sphinx using the sphinx.ext.inheritance_diagram extension. This uses Graphviz to draw the diagrams.
It's not a huge diagram and it seems that there is ...
0
votes
1answer
60 views
GraphViz keep node position with dot
i know there are some related questions but I am wondering if there are better solutions in forcing graphviz to keep node positions in defined order.
Here is the my Problem:
I have two subgraphs with ...
0
votes
1answer
77 views
Need help to improve graphviz rendering of a basic neural network
I try to use Graphviz to get a picture of the state of a basic neural network. The input layer has 14 neurons, and the output layer is only one neuron. One can choose the number of hidden layers as ...
0
votes
2answers
111 views
How to create duplicate nodes in PyGraphviz?
I am using PyGraphviz to draw a Binary Search Tree. I am unable to create duplicate nodes using PyGraphviz because of which the edges are cycled back to nodes.
For Example, the following code ...


