-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
35 lines (35 loc) · 739 Bytes
/
data.json
File metadata and controls
35 lines (35 loc) · 739 Bytes
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
{
"nodes":[
{
"key": "Topic A",
"attributes": {
"x": 0,
"y": 0,
"size": 10,
"label": "Topic A",
"color": "#D8482D"
}
},
{
"key": "Topic B",
"attributes": {
"x": 1,
"y": 1,
"size": 10,
"label": "Topic B",
"color": "#B30000"
}
}
],
"edges": [
{
"key": "tA->tB",
"source": "Topic A",
"target": "Topic B",
"attributes": {
"size": 3,
"color": "#001b60"
}
}
]
}