dot
How to install graphviz on windows 7. i cant find the set-up file.
Submitted by elmathonsi on Thu, 04/11/2013 - 02:40I have downloaded this file "graphviz-2.30.1" but i can't find the setup file.
Please advise.
Embed http image
Submitted by luandrea on Tue, 04/09/2013 - 08:54Hi all,
I'm trying to insert an image in a node, but when I execute dot I get this error:
Warning: Invalid argument while opening https://www.google.it/images/srpr/logo4w.png
Warning: No or improper image="https://www.google.it/images/srpr/logo4w.png" for node "b"
The dot source is this:
digraph legend {
a [image="d:\temp\out.gif"]
b [image="https://www.google.it/images/srpr/logo4w.png"]
}
In the resulting graph I see the node with the local image correctly, but the 'b' node doesn't have any image.
I'm behind a proxy, but I don't think this is the problem.
Embed a image on the web
Submitted by luandrea on Tue, 04/09/2013 - 04:13Hi,
I wanted to add an image that resides in the web to a node, but when I try to create my svg image dot says that:
Warning: Invalid argument while opening https://www.google.it/images/srpr/logo4w.png
Warning: No or improper image="https://www.google.it/images/srpr/logo4w.png" for node "imgnode"
This is my dot source file:
digraph G {
imgnode[image="https://www.google.it/images/srpr/logo4w.png", label=""];
imgnode2[image="D:\temp\out.gif", label=""];
}
The imgnode2 display the image correctly.
I'm behind a proxy, is it possible that this is the problem?
Manual install from .zip on Windows: PATH problem?
Submitted by ozh on Thu, 04/04/2013 - 15:35Hi
I've installed Graphviz using the .zip archive (can't run .msi files on my computer)
I've added d:\utils\GraphViz\ to the %PATH%
When I try to run dot.exe from the command line I get:
$ d:/utils/GraphViz/bin/dot.exe -Tpng -o data.png data.dot
(dot.exe:6380): Pango-WARNING **: `/target/lib/pango/1.6.0/modules/pango-basic-win32.dll': cannot find the specified module.
So, I guess there's either a config file to edit or more %PATH% to set? Any help greatly appreciated!
Advices on rendering PNG / Problem with text overlaping
Submitted by tijeff on Thu, 03/28/2013 - 21:32Im using the command:
dot -O -v -Tpng _test1.txt
Global subgraph style statements
Submitted by Even on Wed, 03/27/2013 - 06:02Hello! I have quite a few graphs with a lot of subgraphs. To style these I use a global style for subgraphs as seen in the example below (simplified).
digraph g
{
graph [rankdir=LR];
subgraph [style="rounded, filled", color=red, fillcolor=khaki, fontsize=10];
node [shape=box, style="rounded,filled", color=red, fillcolor=khaki, fontsize=8];
subgraph cluster0
{
1 [label="First"];
2 [label="Second"];
}
1 -> 2;
}
dot file created from schemaspy wont render
Submitted by metcas on Wed, 03/20/2013 - 12:25I have been using dot in conjunction with schemaspy to create database relationship diagrams.
dot is hanging on some diagrams. I have looked at a number of diagrams and cannot see any obvious differences.
I have run dot from the command line to see if I get any messages etc by using the -q flag but I get no further clues.
Is there a way of identifying what is cause dot to hang/spin etc!!
Below is my latest test
Thanks for any advice
Steve M
C:\Program Files (x86)\Graphviz2.31\bin>dot -v -Tpng -O -q3 SU.1degree.dot
dot - graphviz version 2.31.20130320.0445 (20130320.0445)
Problem with displaying dot file in latest graphiz release for windows
Submitted by brammert on Mon, 03/18/2013 - 21:01Hi all,
I´ve been trying to plot a very simple graphviz file in the latest windows release (AT&T execution package) with gvedit, but graphviz keeps complaining. I didn't have any problems displaying the file with previous version. The definition of the graph is as follows:
graph G {
0[6];
1[5];
2[4];
3[8];
4[9];
5[3];
6[1];
7[7];
8[2];
7--8 [];
0--7 [];
3--4 [];
2--1 [];
5--4 [];
6--8 [];
5--3 [];
8--5 [];
6--1 [];
6--0 [];
6--2 [];
}
and the error message I get is:
Warning: :2: syntax error in line 2 near ']'
Problem with simple graph on windows 7
Submitted by brammert on Mon, 03/18/2013 - 03:51Hi,
I'm trying to display the following graph:
graph G {
0[4];
1[9];
2[3];
3[8];
4[2];
5[7];
6[6];
7[1];
8[5];
3--1 [];
6--5 [];
2--1 [];
2--3 [];
7--8 [];
0--8 [];
7--6 [];
5--4 [];
7--4 [];
7--0 [];
}
but I get the following error in the console:
Warning: :2: syntax error in line 2 near ']'
It must be a very simple thing that must be missing, but I can't seem to find it. In older verstions of graphviz I didn't have any problems displaying this graph. Hope anyone can help,
Brammert
Edge between rows in record overlaps entire record
Submitted by pjgat09 on Sat, 03/16/2013 - 15:41Attached is my code (record_upload.txt) and the output (record_upload.png). The line from 130853 to 130843 overlaps the entire "function2" node. How can I prevent it from doing this?

Recent comments
3 days 6 hours ago
3 days 7 hours ago
4 days 10 hours ago
4 days 13 hours ago
5 days 10 hours ago
5 days 10 hours ago
1 week 1 day ago
1 week 1 day ago
1 week 1 day ago
1 week 2 days ago