-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgojs.json
More file actions
71 lines (64 loc) · 1.78 KB
/
gojs.json
File metadata and controls
71 lines (64 loc) · 1.78 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"class": "go.GraphLinksModel",
"copiesArrays": true,
"copiesArrayObjects": true,
"nodeDataArray": [
{ "key": -1, "category": "Source", "text": "Search" },
{ "key": -2, "category": "Source", "text": "Referral" },
{ "key": -3, "category": "Source", "text": "Advertising" },
{ "key": 0, "text": "Homepage" },
{ "key": 1, "text": "Products" },
{ "key": 2, "text": "Buy" },
{ "key": 3, "text": "Samples" },
{ "key": 5, "text": "Documentation" },
{ "key": 6, "text": "Download" },
{ "key": 100, "category": "DesiredEvent", "text": "Ordered!" },
{ "key": 101, "category": "DesiredEvent", "text": "Downloaded!" },
{
"key": 200,
"category": "UndesiredEvent",
"reasonsList": [
{ "text": "Needs redesign?" },
{ "text": "Wrong Product?" }
]
},
{
"key": 201,
"category": "UndesiredEvent",
"reasonsList": [
{ "text": "Need better samples?" },
{ "text": "Bad landing page for Advertising?" }
]
},
{
"key": 202,
"category": "UndesiredEvent",
"reasonsList": [
{ "text": "Reconsider Pricing?" },
{ "text": "Confusing Cart?" }
]
},
{
"category": "Comment",
"text": "Add notes with general comments for the next team meeting"
}
],
"linkDataArray": [
{ "from": -1, "to": 0 },
{ "from": -2, "to": 0 },
{ "from": -2, "to": 3 },
{ "from": -3, "to": 3 },
{ "from": 0, "to": 1 },
{ "from": 1, "to": 2 },
{ "from": 1, "to": 3 },
{ "from": 0, "to": 5 },
{ "from": 5, "to": 3 },
{ "from": 3, "to": 2 },
{ "from": 3, "to": 6 },
{ "from": 2, "to": 100 },
{ "from": 6, "to": 101 },
{ "from": 0, "to": 200 },
{ "from": 3, "to": 201 },
{ "from": 2, "to": 202 }
]
}