Questions tagged [graphviz]
Graphviz is a rich set of tools which is used to render many types of graphs.
8 questions
1
vote
2
answers
148
views
How to filter paths through a digraph by whether any of the node names contain a keyword?
gvpr can filter graphs, but its language is obtuse and I could not find a lot of examples. Is there some way to traverse all possible paths from all root nodes (one in my case, if that makes any ...
1
vote
1
answer
321
views
How to install a recent version of graphviz usable with RHEL 8? [duplicate]
I want to install a recent version of graphviz (e.g. Graphviz version 12) on a RHEL 7 system.
When I look at RPMfind I can only see rpms for Fedora. Where do i find a RPM for RHEL 7?
4
votes
1
answer
2k
views
How to set default font, or default style in Graphviz's Dot language
It seems, every tutorial every example scripts explicitly states what font should be used for each node/arrow.
Instead, I'd like to specify default font which all arrows and nodes use only once (may ...
0
votes
0
answers
187
views
Seemingly correct Graphviz source produces error when rendering
I've got into a peculiar situation. I've installed two versions of Graphviz in two environments: 2.44.1 on Windows, and 2.40.1 on Debian. The graph I've generated produces identical sources on both, ...
0
votes
1
answer
952
views
How to Set the Newer Version of dot (a tool of graphviz)?
I wanted to use doxygen 1.8.5 on CentOS 7 which uses dot to produce graphs of source codes. dot is a tool of graphviz package. I downloaded graphviz 2.42 and installed it by going through the ...
1
vote
1
answer
119
views
Debian editor with syntax highlight for DOT language
I'm looking for a Debian editor with syntax highlight for the DOT language.
11
votes
1
answer
7k
views
Visualizing dependencies coded up in makefiles as a graph
Closely related to How to display dependencies given in a makefile as a tree? But the answers given there is not satisfactory (i.e. do not work).
Is there a tool to visualize the Directed Acylic ...
5
votes
1
answer
2k
views
How do I add color to a graphviz graph node?
Here is the code for the graph I currently have:
graph Budget {
Country_Budget -- Profit_and_Loss_Account [type=s];
Country_Budget -- Balance_Sheet [type=s];
Profit_and_Loss_Account -- ...