1295 Support for subgraphs with wide labels

This commit is contained in:
Knut Sveidqvist
2020-03-11 19:52:57 +01:00
parent 1b64af143e
commit 7bd5529bb7
6 changed files with 156 additions and 8 deletions

View File

@@ -409,6 +409,22 @@ graph TB
end
```
You can also set an excplicit id for the subgraph.
```
graph TB
c1-->a2
subgraph ide1 [one]
a1-->a2
end
```
```mermaid
graph TB
c1-->a2
subgraph id1 [one]
a1-->a2
end
```
## Interaction