-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathsankey_subplots.json
46 lines (46 loc) · 1.12 KB
/
sankey_subplots.json
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
43
44
45
46
{
"data": [{
"domain": {
"x": [0, 0.45]
},
"type": "sankey",
"orientation": "h",
"node": {
"line": {
"color": "black"
},
"label": ["el1", "el2", "el3"]
},
"link": {
"source": [0, 2],
"target": [1, 1],
"value": [120, 50],
"label": ["stram1", "stream2"]
}
},
{
"domain": {
"x": [0.55, 1]
},
"type": "sankey",
"orientation": "h",
"node": {
"line": {
"color": "black"
},
"label": ["el4", "el5", "el6"]
},
"link": {
"source": [0, 2],
"target": [1, 1],
"value": [120, 50],
"label": ["stram4", "stream5"]
}
}
],
"layout": {
"title": "Multiple Sankey plots",
"autosize": true,
"showlegend": false
}
}