-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmissibility.js
44 lines (42 loc) · 1.21 KB
/
admissibility.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
$(function () {
$('#container-general').highcharts({
chart: {
type: 'bar'
},
title: {
text: 'CEDAW Cases Admissibility'
},
xAxis: {
categories: ['2004', '2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012']
},
yAxis: {
min: 0,
title: {
text: 'CEDAW cases'
}
},
legend: {
backgroundColor: '#FFFFFF',
reversed: true
},
plotOptions: {
series: {
stacking: 'normal'
},
column: {
colorByPoint: true
}
},
colors: ['#85FFCD', '#FF9885', '#214033'],
series: [{
name: 'Admissible',
data: [0, 1, 2, 2, 0, 0, 1, 4, 4]
}, {
name: 'Inadmissible',
data: [1, 0, 1, 3, 0, 3, 0, 2, 2]
}, {
name: 'Discontinued',
data: [0, 0, 0, 0, 3, 0, 0, 1, 0]
}]
});
});