-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·173 lines (164 loc) · 5.75 KB
/
index.html
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script>window.html5 || document.write('<script src="js/vendor/html5shiv.js"><\/script>')</script>
<![endif]-->
<style type="text/css" media="screen">
.h1 {
border-bottom: 1px solid #e8e8e8;
padding: 0.5em 0em;
text-align: center;
}
.container {
max-width: 960px;
margin: 1em auto;
}
.well {
min-height: 20px;
margin-bottom: 20px;
background-color: #fafafa;
border: 1px solid #e8e8e8;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
padding: 2em;
}
.footer {
text-align: center;
padding: 0.5em 0em;
border-top: 1px solid #e8e8e8;
}
</style>
<script src="js/vendor/jquery.1.9.1.min.js"></script>
<script src="js/vendor/highcharts.js"></script>
<script type="text/javascript">
$(function () {
// 2014
$('.highchart-container-2014').highcharts({
chart: {
type: 'bar'
},
plotOptions: {
series: {
stacking: 'normal'
}
},
legend: {
reversed: true
},
title: {
text: 'Zusammensetzung der Meetups (2014)'
},
xAxis: {
categories: ['13.6.', '7.7.', '21.7.', '4.8.', '18.8.', '1.9.', '15.9.', '29.9', '12.10', '27.10', '10.11', '24.11'],
tickmarkPlacement: 'on',
title: {
text: 'Meetups'
}
},
yAxis: {
title: {
text: 'Teilnehmende'
},
labels: {
formatter: function () {
return this.value;
}
}
},
tooltip: {
shared: true
},
series: [{
name: 'Leads',
data: [4, 3, 4, 3, 4, 4, 2, 3, 3, 4, 2, 3]
}, {
name: 'Fellows',
data: [1, 4, 0, 5, 2, 5, 3, 2, 2, 5, 4, 2]
}, {
name: 'Interessierte',
data: [5, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0]
}],
colors: ['#6D4869', '#A35C58', '#D47345']
});
// 2015
$('.highchart-container-2015').highcharts({
chart: {
type: 'bar'
},
plotOptions: {
series: {
stacking: 'normal'
}
},
legend: {
reversed: true
},
title: {
text: 'Zusammensetzung der Meetups (2015)'
},
xAxis: {
categories: ['5.1.', '19.1.', '9.2', '23.2', '16.3', '14.04', '11.05', '08.06'],
tickmarkPlacement: 'on',
title: {
text: 'Meetups'
}
},
yAxis: {
title: {
text: 'Teilnehmende'
},
labels: {
formatter: function () {
return this.value;
}
}
},
tooltip: {
shared: true
},
series: [{
name: 'Leads',
data: [3, 2, 2, 2, 5, 3, 3, 2]
}, {
name: 'Fellows',
data: [3, 4, 5, 1, 4, 4, 5, 3]
}, {
name: 'Interessierte',
data: [3, 2, 0, 0, 1, 0, 1, 0]
}],
colors: ['#6D4869', '#A35C58', '#D47345']
});
});
</script>
</head>
<body>
<div class="container">
<h1 class="h1">Teilnehmer*innen der OK Lab Gießen Meetups</h1>
<h2 class="h2">2014</h2>
<div class="well">
<div class="highchart-container-2014">
</div>
</div>
<h2 class="h2">2015</h2>
<div class="well">
<div class="highchart-container-2015">
</div>
</div>
<footer class="footer">
<a href="http://codefor.de/giessen/" title="Code for Gießen">
<img alt="" width="200px" src="img/cfgi-black.svg">
</a>
</footer>
</div>
</body>
</html>