forked from SheetJS/sheetjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlegend.dot
42 lines (38 loc) · 1 KB
/
legend.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
digraph G {
graph [mindist=0];
labelloc=t;
label="Legend"
subgraph cluster_0 {
label="Supported Format Types"
color="white"
XL[label="Excel",style=filled,color=green];
CSF[label="JS",shape=doublecircle];
OLD[label="Other",style=filled,color=cyan];
{ edge[style=invis] XL -> CSF -> OLD[constraint=false]}
}
subgraph cluster_1 {
label="Workbook Format Conversions (blue arrow)"
color="white"
x1i[label="XLSX"]
c1[shape=doublecircle,label="JS"];
x1o[label="XLSB"]
{ edge[color=blue]
x1i->c1[constraint=false,label="read"]
c1->x1o[constraint=false,label="write"];
}
}
subgraph cluster_2 {
label="Single-Worksheet Format Conversions (green arrow)"
color="white"
x2i[label="SYLK"]
c2[shape=doublecircle,label="JS"];
x2o[label="CSV"]
{ edge[color=aquamarine4]
x2i->c2[constraint=false,label="read"]
c2->x2o[constraint=false,label="write"];
}
}
{ edge[style=invis] XL -> x1i -> x2i; }
{ edge[style=invis] CSF -> c1 -> c2; }
{ edge[style=invis] OLD -> x1o -> x2o; }
}