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, ...
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...
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
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...
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...
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...
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\...
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...
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...
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...
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...
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)
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...
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.
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...
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 ...
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...
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
1 Next >
© 2022 - 2024 — McMap. All rights reserved.