Support for Graphviz undirected graph

0 votes
asked Aug 27, 2013 in Wanted features by anonymous

The digraph feature is supported, but not the graph feature. Is there a plan to support this?

Like this:

@startdot
graph graphname
{
    a -- b -- c; 
    b -- d;
}
@enddot

 

1 Answer

0 votes
answered Aug 27, 2013 by plantuml (295,000 points)

This has been implemented in version 7978.

However, the opening bracket has to be on the first line (for some reason) :

@startdot
graph graphname {
    a -- b -- c; 
    b -- d;
}
@enddot

...