dot Questions
1
Solved
See the line on the leftmost side of this image.
This isn't a perfect example because the lines don't end on a node, but imagine that there is a node on the bottom left corner of the image. Norm...
1
Solved
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 ...
1
I would like to force dot displaying only vertical or horizontal edges between nodes.
I have found a similar request with the post Family tree layout with Dot/GraphViz, but I am not dealing with t...
Anora asked 3/3, 2013 at 22:42
1
Solved
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 wit...
1
Solved
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 ...
1
I've been struggling with this for a while and cannot seem to find a straight answer. I'm working with compound subgraphs in graphviz and cannot seem to find the right combination of settings to fo...
1
Solved
Is it possible to alter the following code to put Child_4 at the same horizontal level as Grandchild_0 (thereby pushing Grandchild_4 to its own level)?
import networkx as nx
import matplotlib.pypl...
Chimerical asked 12/3, 2013 at 4:2
3
How do I configure the distance between edges and nodes (red), i.e. the outer shape of a node(blue)?
1
Solved
Doxygen generates a nice class hierarchy for my project using graphviz. But I now want to add manual annotations to that graph. For that I need to edit the DOT file. However doxygen doesn't seem to...
1
Solved
I've made a tree in the dot language, similar to the one here.
Is there any way I could get the tree to expand to the right, instead of downwards (so the root node is on the left and children go a...
1
The only ways I am aware of, aren't "direct":
converting to ANTLR format and using its own visualizer
VISUALLANGLAB, which it seems to require an entire mouse-clicks "rewrite"
implementing a conv...
Evannia asked 30/1, 2013 at 18:41
1
Solved
2
Solved
I have a graph that's laid out from left-to-right. There are some elements of this graph, however, that I want to have positioned relative to another node. For example, if I have this graph:
digra...
1
Solved
I was trying to write my own little algorithm for graph layout that only creates a node layout but does not define edge routes. When I use Graphviz to turn the resulting dot file into a graph, the ...
1
I want to create a flowchart (similar to Visio) using Graphviz. Here is a sample digraph.
digraph start_up {
node [style = rounded];
node [shape = rect] start end;
node [style = ""];
node [shape ...
1
Solved
How do you use Graphviz/DOT's HTML features to add a subscript character to an edge label?
2
I am a newbie to the dot layout in graphviz. I am trying to specify a graph in the dot language, and I want certain sets of nodes to be forced to overlapped by a certain amount (say 70% of their ar...
Custodial asked 18/8, 2012 at 19:5
1
I've inherited a large C++ project which I need to port to Linux. There are over 200,000 lines of source in this project spread across more than 300 files. It would be tremendously helpful to have ...
1
Solved
I'd like to group some nodes with the following code
digraph dataflow {
subgraph pipeline {
relations;
synonyms;
articles;
}
subgraph lucene {
index;
search;
}
training_data - > index...
1
Solved
I have a graph (organigram) how this:
digraph G {
nodesep=0.3;
ranksep=0.2;
margin=0.1;
node [shape=rectangle];
edge [arrowsize=0.8];
1 -> 2;
1 -> 3;
1 -> 4;
1 -> 5;
1 -> 6;
1 ->...
1
Solved
I am trying to recreate an example diagram for a binary search tree with GraphViz. This is how it should look in the end:
This is my first attempt:
digraph G {
nodesep=0.3;
ranksep=0.2;
marg...
Retard asked 5/6, 2012 at 18:25
2
Solved
Is there such a thing as a DOT bundle for TextMate?
Bootlick asked 21/2, 2011 at 11:36
2
Solved
Good evening, I'm trying to generate graph using graphviz.
I can't figure out how to model horizontal edges between some nodes. I use the next code to generate this graph:
digraph{ rankdir=LR;...
1
Solved
I am using python graph-tool. To draw graphs, it uses graph_draw function. I want to send vertex positions explicitly to dot engine. It turns out that I can pass a property map named pos. I tried d...
Ulberto asked 9/10, 2011 at 14:42
1
Solved
I have this Graphviz graph:
digraph
{
rankdir="LR";
overlap = true;
Node[shape=record, height="0.4", width="0.4"];
Edge[dir=none];
A B C D E F G H I
A -> B -> C
D -> E -> F
...
© 2022 - 2024 — McMap. All rights reserved.