-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_data.js
125 lines (124 loc) · 2.11 KB
/
example_data.js
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
var data = {
label: 'A--',
value: 9,
satellites: [
{
label: 'Functionality',
tip: 'Functionality',
value: 1,
satellites: [
{
label: 'Rate1',
tip: 'value1',
value: 1
},
{
label: 'Rate2',
tip: 'value2',
value: 3
},
{
label: 'Rate3',
tip: 'value3',
value: 6
},
{
label: 'Rate4',
tip: 'value4',
value: 10
}
]
},
{
label: 'Ease of use',
value: 3,
tip: 'Ease of use',
satellites: [
{
label: 'Rate5',
tip: 'value5',
value: 1
},
{
label: 'Rate6',
tip: 'value6',
value: 5
},
{
label: 'Rate7',
tip: 'value7',
value: 10
}
]
},
{
label: 'Security',
value: 8,
tip: 'Security',
satellites: [
{
label: 'Rate8',
tip: 'value8',
value: 1
},
{
label: 'Rate9',
tip: 'value9',
value: 3
},
{
label: 'Rate10',
tip: 'value10',
value: 6
},
{
label: 'Rate11',
tip: 'value11',
value: 10
},
{
label: 'Rate12',
tip: 'value12',
value: 2
},
{
label: 'Rate13',
tip: 'value13',
value: 4
},
{
label: 'Rate14',
tip: 'value14',
value: 7
},
{
label: 'Rate15',
tip: 'value15',
value: 9
}
]
},
{
label: 'Ergonomics',
value: 10,
tip: 'Ergonomics',
satellites: [
{
label: 'Rate16',
tip: 'value16',
value: 1
},
{
label: 'Rate17',
tip: 'value17',
value: 5
},
{
label: 'Rate18',
tip: 'value18',
value: 10
}
]
}
]
};