dot Questions
1
Solved
I got this dot graph and want the nodes A and D, B and E and C and F to be aligned. Here is the related dot code:
digraph{
A
B
C
D
E
F
{rank = same; B; C}
{rank = same; E; F}
A -> B [label=...
1
Solved
Is there -- either via a language feature or via a preporcessor -- a possiblity to include external .dot files as subgraphs into another one?
I am working on a relatively big graph, though manuall...
3
I have a directed graph specified in Graphviz's dot language, e.g.
digraph G { A -> B [label="foo"]; A -> B [label="bar"]; B -> A; C; }
I want to automatically process this into a graph...
4
MacOS version: 10.7.2 (Lion)
Doxygen version: 1.7.5.1
Graphviz version: 2.29
Doxygen configuration:
DOT_PATH = ../../../../Applications/Contents/MacOS/Graphviz
HAVE_DOT = YES
SHORT_NAMES = YES
...
1
Today I tried to write a program that would take in a paragraph of text and create a graph showing relations between different words. Everything went well, except that I don't know how to find out ...
3
Solved
I've reduced my problem to the following simple example:
digraph {
subgraph {rank=same; 0 -> 1 -> 2;}
0 -> 2 [label="A"];
2 -> 0 [label="B"];
}
which produces
While keeping 0, 1 ...
1
I'm using pydot for parsing dot files in python. I can't find a way to parse comments present in the dot file itself, is there any way to do it?
By just looking at the documentation I couldn't fin...
2
Solved
I create representation of graph with NetworkX library in my python project.
Making directed graph I need to add an attribute to our graph output:
rankdir=LR
So I'm writing the code:
import netw...
1
Solved
I have installed Graphviz on Fedora using the recommended procedure described at GraphViz official site. However, I'm not able to convert a basic hello.dot file using dot command.
My hello.dot fil...
1
I am trying to create a timeline of mergers in the Dutch energy sector. I am using rank=same to force nodes to remain on the same year. However, the timeline backs up on itself, so that nodes in th...
1
I'm trying to use dot (version 2.28.0) in order to make a flow chart of my source code. For that, I would like the graph to consist of subgraphs where each of these subgraphs represents a source fi...
1
Solved
I'm feeding this simple input script defining record based nodes to dot in order to create a SVG from it (the SVG part actually doesn't matter):
graph mygraph{
node [shape=record, fontsize=10, fo...
6
Solved
I am trying to draw a family tree with Dot and GraphViz.
This is what I currently have:
# just graph set-up
digraph simpsons {
ratio = "auto"
mincross = 2.0
# draw some nodes
"Abraham" [shape=b...
Lath asked 16/2, 2010 at 9:19
1
Solved
Is there any documentation (full pseudo code?) on the algorithm from dot within the Graphviz Library?
I only found some partial pseudo code documentation.
Cockalorum asked 8/10, 2013 at 10:34
1
Solved
I wonder if it is possible to use different font sizes in the same label. If so, could any provide me with example?
1
Solved
I have for now a dot file generating the following graph
label
[A] -----------> [b]
and I want to change it to something like:
[A] label 1 ------> label 2 [b]
Is there any way to express th...
1
I have a set of GraphViz nodes such that:
digraph {
A->B;
A->C;
A->D;
}
But B, C, and D happen sequentially in time!
It would be great if there was some way to indicate the vertic...
1
Solved
In my Graphviz graph (written in DOT), I want each node to have a label, but in addition to that, I want some nodes to have a small caption denoting some other unique value for that node. For examp...
1
Solved
I am looking forward to write a script that will automatically take input from a file and declare the nodes and edges, and produce a graph that can be visualized in any visualization software.
I t...
Shotgun asked 26/8, 2013 at 12:42
3
I using dot and Graphviz in doxygen to create a user manual of my code in HTML. The doxygen code looks somewhat like this:
/**<br>
*@addtogroup MainProgram
* @dot
* digraph G {
* Main ...
1
Solved
I'm currently writing a graphs library in Java, and I would like a tool to visualize some graphs. I discovered Graph-viz, which happens to be a great - although buggy - way of doing this.
In my mo...
1
Solved
I am not sure whether this is to be a doxygen or a dot question, but here goes.
In my project I have many files that need to include common headers such stdlib.h, stdint.h, and so on. When I ask d...
1
Solved
I have the following dot sample. I would like to give the first section in each record (the table name) a different background and foreground colour. I can't find any examples of how to do this for...
2
Solved
Here is a very simplified example of my Dot graph:
strict digraph graphName {
A->B
B->A
}
This creates
Instead I want a single edge shown between A and B but with a double arrow head. I ...
1
Solved
Is it possible to set distinct colors for headlabel and taillabel in graphviz?
Using labelfontcolor I can set one common color for both of them but I need different colors (something like headfontc...
© 2022 - 2024 — McMap. All rights reserved.