MOTHBALLED-graphviz
MOTHBALLED-graphviz copied to clipboard
Moved to https://gitlab.com/graphviz/graphviz
Running dot -Gnewrank -Grankmode=graph on the following graph loses the clusters on output: ```C digraph { subgraph "cluster_1" { 1; } subgraph "cluster_2" { 2 } } ``` Related issue...
Is there any chance to get a more up to date release for windows? I'm affected by quite a few issues and crashes of dot.exe which are supposedly fixed or...
Ported Issue from Mantis Original ID: 1995 Reported By: Kevin2 SEVERITY: MINOR Submitted: 2010-11-22 22:52:26 OS: OTHER-WINDOWS-2008R2 ## DESCRIPTION Would it be possible to get a 64 bit version compiled?...
The output from running fdp on the regression test file rtests/graph/fdp.gv can change between runs. This appears unrelated to the use of drand, as the seed is always set the...
In C code, how can I turn an existing subgraph into a cluster? I haven't found a function in `cgraph.h` that renames subgraphs. The latter would allow you to prepend...
Example dot input: ```dot digraph "Name" { subgraph "cluster_foo" { "n1"; } subgraph "rank-1" { graph [rank=same]; "n1"; } } ``` ``` $ cat ~/Desktop/dump1.dot | ./dot.exe -Tpng > ~/Desktop/dump1.png...
From the cgraph tutorial Chapter 9 "Subgraphs": > It is not uncommon to want to populate a subgraph with nodes and edges that have already been created. This can be...
Consider the following bit of test code. ```c++ void dump(Agraph_t* root, string filename) { GVC_t* gvc = gvContext(); imagwrite(root, (filename + ".dot").c_str()); gvLayout(gvc, root, "dot"); gvRenderFilename(gvc, root, "png", (filename +...
So it seems like the distribution of binaries is over and that the recommended way is to use the HomeBrew package manager. That's fine, except that with the latest version...
Hi, I am trying to specify to link against liblua5.1 in a ubuntu 14.04 where both 5.1 and 5.2 are installed i tried to configure with ``` > ./configure --disable-perl...