dot
Is there a limit for sametail definitions number in DOT ?
Submitted by tamar_a_roulettes on Mon, 04/23/2012 - 07:25Hi,
could someone find out why the following example produces an error with dot, whereas it works fine when removing the last line (or replace T6 with T5, for example)?
digraph "test" {
Node0 -> Node1 [sametail=T1];
Node0 -> Node1 [sametail=T2];
Node0 -> Node1 [sametail=T3];
Node0 -> Node1 [sametail=T4];
Node0 -> Node1 [sametail=T5];
Node0 -> Node1 [sametail=T6];
}
Thank you !
Limit for sametail/samehead definitions number in DOT ?
Submitted by tamar_a_roulettes on Mon, 04/23/2012 - 04:25Hi,
I tried to draw hierarchical graphs with dot, involving a limited number of nodes (about 30), but with more than 100 edges and, especially, many edges having to start from same points. So I used "sametail" attribute, but got an error at generation.
Looking for the reason of the failure, I noticed that I got the error if more than 14 "sametail" and/or "samehead" attributes are defined in the dot file I am defining (it works fine with 13 "sametail" definitions, but not over).
Hierachical Graph Max Number of Nodes/Edges
Submitted by ludden on Wed, 04/18/2012 - 04:23Hello,
I have a graph with ~ 7000 Edges and ~ 6500 Nodes I tried to create it with dot as an .svg.
But dot is running for ever ( >1h). Is it possible that the Graph is too complex/large ?
What is the maximum size of edges/nodes possible with graphviz?
I know, it's also a question of complexity, but maybe there is some kind of thumbrule.
Thanks!
subgraph's label style
Submitted by takechi on Thu, 04/12/2012 - 11:21If I create subgraph as follow,
subgraph cluster1 {
color = white;
labelloc="c"
label = "process #2";
b0 [shape=ellipse];
}
can I change style of label "process #2" to be bold?
align problem in record
Submitted by zong on Wed, 04/11/2012 - 13:11how can I align all lines with the left side of the record node?
this is a simple example of my problem
http://dl.dropbox.com/u/2196861/align.PNG
and this is a my simple code
n2 [label = "this is line1\ncan I align with the left side\nline3"];
I want to align all lines with the left side,and
I try to use 'nojustify = "true"' or 'labeljust = "l"',
but I can't solve it.
how can I do?
by the way,when I output a picture to .svg format ,the text will exceed the bound of node.
and when I change to .png format ,this problem is not exist.
why??
like this:
Graphviz as a library using dot layout: setting nodesep and/or mindist does not seem to have any effect
Submitted by michaelb on Wed, 04/04/2012 - 07:14Hi!
I am attempting to use Graphviz as a library with dot layout. My
development platform is Visual Studio 2008. The layouts
produced by default are too dense for my application, so I have
been trying to increase node distances by setting graph attributes:
agraphattr(myGraph, "nodesep", "2.0")
agraphattr(myGraph, "mindist", "2.0")
The problem that I have consists of these two settings not having any
discernible effect on the graphs produced. I have tried to vary things,
for example, setting the attributes before or after all the nodes and
Cluster Layout
Submitted by Ruud on Wed, 04/04/2012 - 06:17Hi,
I'm working on an application that maintains landscapes of applications and integration components like services, adapters, interfaces etc. So far, prototype results are very satisfactory, with the exeption of the following issue (see fig and txt (dot-program) example attachments):
How can I force the layout in such a way that the three clusters always will be lined from top to bottom ?
Arrange nodes from left to right in my own order
Submitted by mmasroorali on Thu, 03/29/2012 - 11:02I have a certain dot file (simplified to very simple barebones from a very big file) like the following,
graph "G" {
node [shape=plaintext,fontsize=24,fontname=Helvetica];
ratio = 0.6;
margin = 0.0;
E1 [label = "E"]
E2 [label = "E"]
T4 [label = "T"]
P2 [label = "+"]
E1 -- E2; E1 -- T4; E1 -- P2;
}
The problem is in the leaf level, I am getting the nodes in the order, E T + (please see the attached image)
I want this to be E + T
Could you please tell me how to achieve this?
Thanks.
path / condition solve
Submitted by ouhouhsami on Sat, 03/24/2012 - 06:38Hello,
I try to make a flowchart using graphviz, with "Yes/No" conditions on paths, but using just one instance for each condition (node), that can appear multipe time in the same graph, which depend on previous condition ... let me explain a bit more with a graphviz syntax I would use to achieve this
I have attach an image of my "output" wishes
Here we see that D is a node (for which I would just want to have a unique instance in my dot file), but it appears 2 times, based on the fact that we can lead to it with different conditions.
Limits to graph coordinates
Submitted by sosimple on Thu, 03/22/2012 - 10:47Hi guys,
I'm using grappa and graphviz dot to generate new graphs.
The dot does a great job putting the nodes in the right place but now, I need to create limits in the coordinates generated.
For example it places the nodes in coordinates like (0,0), (450,200)...
I want is dot places nodes in the coordinate range (-180,-90)(180,90)
It is possible in attributes give this range to Dot?
Best regards

Recent comments
2 days 20 hours ago
2 days 22 hours ago
4 days 1 hour ago
4 days 3 hours ago
5 days 49 min ago
5 days 58 min ago
1 week 1 day ago
1 week 1 day ago
1 week 1 day ago
1 week 1 day ago