Add graph/flowchart examples #1

Merged
AllSpiceAlice merged 13 commits from develop into main 2022-10-17 16:38:34 +00:00
1 changed files with 20 additions and 0 deletions
Showing only changes of commit a9805275c5 - Show all commits

View File

@ -62,3 +62,23 @@ flowchart TB;
Trapezoid1[/Trapezoid 1\]
Trapezoid2[\Trapezoid 2/]
```
## Links
```mermaid
flowchart LR;
Start[Line] --- End[Line];
EndR2L[Line] --> StartR2L[Arrow];
Start4[Dotted] -.- End4[Line];
StartThick2[Thick] === EndThick2[Line];
StartThick[Thick] ==> EndThick[Arrow];
Chain1b[Chain] --> Chain2b[Link] --> Chain3b[Nodes];
Start2[Line] --> |text in link| End2[Arrow];
Start3[Line] --- |text in link| End3[Line];
Start5[Dotted] -.- |text in link| End5[Line];
StartThick3[Thick] ==> |text in link| EndThick3[Arrow];
StartThick4[Thick] === |text in link| EndThick4[Line];
Chain1[Chain] -- text in link --> Chain2[Link] -- text in link --> Chain3[Nodes];
```