Top "Graphviz" questions

Graphviz, developed by AT&T Research Labs, is the leading application for layout and drawing of graphs (objects comprised of vertices connected by edges).

Family tree layout with Dot/GraphViz

I am trying to draw a family tree with Dot and GraphViz. This is what I currently have: # just graph …

graphviz dot family-tree graph-layout genealogy
How can I optimize GraphViz output width?

I make graphs that have huge width ratio: they are 51706 x 503 pixels in size. How can I tell GraphViz to …

ruby graphviz
GraphViz - How to have a subgraph be left-to-right when main graph is top-to-bottom?

I have a graph file like this: digraph { "Step1" -> "Step2" -> "Step3"; subgraph step2detail { "Step2" -&…

graphviz
Reducing the size (as in area) of the graph generated by graphviz

Does anyone have any general tips for reducing the size of a graph generated by graphviz (size as in area, …

configuration graphviz image-size graph-drawing
Graphviz outputs a mess

I'm trying to visualise the following data in dot format using GraphViz: digraph n { node [nodesep=2.0, fontsize=11]; graph [ overlap=false]; …

graphviz
ImportError: Failed to import pydot. You must install pydot and graphviz for `pydotprint` to work

I have seen similar issue but it is not solved either, so I decided to ask. I am trying to …

keras graphviz importerror pydot
Pure Java reimplementation of GraphViz?

Is there an Open Source java alternative to GraphViz? I'm aware of the existence of Grappa which basically wraps the …

java drawing graphviz graph-visualization
How to manage distance between nodes in graphviz?

I am trying to plot a graph with 3 levels of nodes, with equal distances between the levels. However, graphviz somehow …

graphviz dot
Dot graph language - how to make bidirectional edges automatically?

Here is a very simplified example of my Dot graph: strict digraph graphName { A->B B->A } This …

graph graphviz dot
Graph Visualisation (like yFiles) in JavaFX

Something like Graphviz but more specifically, yFiles. I want a node/edge type of graph visualization. I was thinking about …

java javafx graphviz