dreampuf / GraphvizOnline

Let's Graphviz it online
https://dreampuf.github.io/GraphvizOnline/
BSD 3-Clause "New" or "Revised" License
799 stars 213 forks source link

cluster is not displayed #1

Closed KES777 closed 7 years ago

KES777 commented 8 years ago
digraph G {
    edge [comment="Wildcard node added automatic in EG."];
    node [comment="Wildcard node added automatic in EG."];
    subgraph "clucv_0" {
        label="asdf";
        edge [comment="Wildcard node added automatic in EG."];
        node [comment="Wildcard node added automatic in EG."];
        a;
    }
}

spec

subgraph : [ subgraph [ ID ] ] '{' stmt_list '}' An ID is one of the following: any double-quoted string ("...") possibly containing escaped quotes ('")

dreampuf commented 7 years ago

Hi, I had upgraded some libraries. It works smoothly with your code. Is that your expected?

image

dreampuf commented 7 years ago

@KES777 Graphviz only renders the subgraph named start with "cluster_XXX". Please check your content. It works fine with this name convention.

image

image