dot Questions

1

I have a .dpt file I am trying to output a .png and .pdf files out of it and I am using my command line expression as: dot -Tpng SPU123.dot -o SPU123.png to generate .png and it works fine. First, ...
Runoff asked 5/1, 2015 at 17:19

1

I have an edge in a dot graph that I need to be ignored by other edges during the layout. I have tried feeding the first part of the code through dot and then adding dotted edges below, however the...
Nitrile asked 1/4, 2018 at 4:35

2

Solved

I am trying to visualize a rather complex structure in the dot language. Because the record is big, I would like to write the code in mulitple lines. So instead of: A11[label="A.11 Access Control|...
Bronez asked 1/10, 2010 at 11:26

3

Solved

I create a dot graph of dependencies for my Debian projects (see picture). The dependencies include redundant edges. I'd like to have a simpler graph without those redundant edges. I could calculat...
Zygophyllaceous asked 9/7, 2019 at 8:39

2

Solved

I'm getting "Could not find/open font" errors when doing anything with graphviz. I've been narrowing it down to an as simple graph as possible, in the file simplest.dot: digraph G { node1 } Whe...
Declan asked 24/1, 2011 at 21:18

2

I want to generate simple linear arrangements like this: I think I am making this way too hard. I tried just hard coding the positions, but it is a little more complicated because I want splined...
Cornflakes asked 7/4, 2011 at 17:56

4

Solved

I am trying to generate something similar to this: https://upload.wikimedia.org/wikipedia/commons/6/65/B-tree.svg From a btree in memory... is there any way to generate a graph like that on Graph...
Arjuna asked 14/11, 2013 at 18:53

1

I am using graphviz and would like to render my graphs with splines = ortho. The problem is that the edges don't respect ports, so it is not possible to analyse the graph. digraph G{ splines= orth...
Orchestrion asked 10/5, 2016 at 10:43

4

Solved

By default in Graphviz, edge labels are placed just to the right of the edge. I'm looking for a way to place the labels OVER the edge, centred on the edge. (It'll still be readable because I'm chan...
Wesla asked 28/2, 2010 at 9:21

2

I want the nodes in the second column (C and E) to left align, rather than center. digraph left { graph [rankdir="LR", splines=ortho]; node [shape=record]; l1 [label="A\l|B\l"]; l2 [label="C\...
Ordinand asked 24/10, 2014 at 4:39

2

Solved

Often, the default layout of graphs drawn by GraphViz in the dot language is a little "tight." With too little visual space, it's hard to put meaningful labels on edges and the graph can look clutt...
Encaustic asked 24/6, 2017 at 10:6

3

Solved

This may be related to How to place edge labels ON edge in graphviz: I have the following graph, which I visualize using the command dot -Teps g.dot > g.eps: graph triple { node [shape=box]; U...
Dion asked 10/8, 2010 at 15:35

2

Solved

I'm trying to use graphviz to do something similar to UML class diagrams. I wonder whether there is a way to make a node of style 'register' have its first field in a bold font, to make it differe...
Erwin asked 30/5, 2011 at 0:28

9

Solved

I have a dot file generated from my code and want to render it in my output. For this i have seen on the net that the command is something like this on cmd dot -Tpng InputFile.dot -o OutputFile.pn...
Mvd asked 15/3, 2011 at 18:20

1

Solved

I tried to create graph from here Improving graphviz layout and want to get the exact picture like in post, but can't vertically align nodes and get nice curve in q3->q3. My question is about h...
Jessabell asked 18/9, 2022 at 15:58

12

Solved

I can't seem to figure this out. I have a .dot file, which is valid according to the syntax. How do I use Graphviz to convert this into an image? (Note that I'm on Windows, not Linux)
Meletius asked 29/9, 2009 at 19:34

4

Solved

I've created a Java program to write a .dot file as I'm using the Graphviz software to visualize some data. There is nothing wrong with a code itself, but when I try to execute the following comman...
Oxblood asked 13/1, 2018 at 18:55

4

Solved

In the DOT language for GraphViz, I'm trying to represent a dependency diagram. I need to be able to have nodes inside a container and to be able to make nodes and/or containers dependent on other ...
Large asked 6/1, 2010 at 9:45

4

I tried $ dot -Tpng rel_graph.gv > rel_graph.png but the resulting image has a very low quality.
Rolf asked 17/8, 2009 at 8:39

2

I'm using graphviz (dot) to generate an undirected multigraph where a lot of the edges are overlapping with nodes and I also have to parallel edges (2 nodes with multiple edges). I tried to use spl...
Edan asked 18/5, 2022 at 14:39

2

I have generated a dot file to visualise a decision tree using the code import numpy as np from sklearn.model_selection import train_test_split import sklearn.tree from sklearn.datasets import loa...
Menstruate asked 16/9, 2018 at 9:41

4

Solved

I have a large DOT script with multiple graphs defined in it: digraph Tree0 { ... } digraph Tree1 { ... { ... I can render this to a postscript file where each graph is on a separate page by ...
Steamroller asked 19/11, 2014 at 14:10

3

Solved

I need to draw a diagram with graphviz/dot where there are common edge types between nodes and am trying to find a way to define a label for each type of edge and then use that label multiple times...
Dibasic asked 5/10, 2017 at 21:31

5

Solved

I'm using graphviz (dot) to generate the graph you can see below. The node in the lower left corner (red ellipse) causes annoyance as its edges cross several edges of the adjacent node. Is there a ...
Kigali asked 19/3, 2010 at 10:48

2

Solved

I have a number of relatively simple (auto-generated) graphs in graphviz dot format. These show the path through a state machine, but dot has a slightly confusing habit of deciding that two nodes m...
Dictaphone asked 9/7, 2009 at 14:36

© 2022 - 2024 — McMap. All rights reserved.