Created
October 31, 2021 07:05
-
-
Save NWMichl/572f43ccccfe5bd9d885b8d0a9b639a7 to your computer and use it in GitHub Desktop.
Example how to create flow charts with diagrams.net and csv import
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 7.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## diagrams.net via CSV example | |
## Menu: Arrange > Insert > Advanced > CSV | |
## | |
# label: %step% | |
# style: rounded=1;fillColor=%fill%; | |
# namespace: csvimport- | |
# connect: {"from":"refs", "to":"id", "invert":true, "style":"curved=0;endArrow=blockThin;endFill=1;"} | |
# padding: 15 | |
# ignore: id,fill,refs | |
# layout: auto | |
## | |
## CSV table | |
id,step,fill,refs | |
1,Node1,#dae8fc, | |
2,Node2,#fff2cc,1 | |
3,Node3,#d5e8d4,2 | |
4,Node4,#f8cecc,2 | |
5,Node5,#fff2cc,"1,2,3" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment