forked from mart1oeil/cnrs-hiring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cnrs-hiring.html
116 lines (94 loc) · 2.94 KB
/
cnrs-hiring.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>CNRS - Hiring</title>
<link href="https://nvd3.org/assets/css/nv.d3.css" rel="stylesheet">
<script src="https://nvd3.org/assets/lib/d3.v3.js"></script>
<script src="./nv.d3.js"></script>
</head>
<body>
<div id='chart-total'>
<h2>Évolution de l'ouverture de postes au concours de CR aux CNRS</h2>
<svg style='height:900px' />
</div>
<script type='text/javascript'>
d3.json('postes-CR-CNRS.json', function(data) {
nv.addGraph(function() {
var chart = nv.models.stackedAreaChart()
.margin({right: 100})
.x(function(d) { return d[0] })
.y(function(d) { return d[1] })
.transitionDuration(500)
.showControls(true)
.clipEdge(true);
//Format x-axis labels with custom function.
chart.xAxis
.tickFormat(d3.format('d'));
chart.yAxis
.tickFormat(d3.format(''));
d3.select('#chart-total svg')
.datum(data)
.call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
})
</script>
<div id='chart-classe1' >
<h2>Évolution de la création des postes de CR 1ère classe aux CNRS</h2>
<svg style='height:900px' />
</div>
<script type='text/javascript'>
d3.json('postes-CR-CNRS-Classe1.json', function(data) {
nv.addGraph(function() {
var chart = nv.models.stackedAreaChart()
.margin({right: 100})
.x(function(d) { return d[0] })
.y(function(d) { return d[1] })
.transitionDuration(500)
.showControls(true)
.clipEdge(true);
//Format x-axis labels with custom function.
chart.xAxis
.tickFormat(d3.format('d'));
chart.yAxis
.tickFormat(d3.format(''));
d3.select('#chart-classe1 svg')
.datum(data)
.call(chart);
nv.utils.windowResize(chart.update);
//d3.select('.nv-legendWrap').attr('transform', 'translate(0, -70)');
return chart;
});
})
</script>
<div id='chart-classe2'>
<h2>Évolution de la création des postes de CR 2è classe aux CNRS</h2>
<svg style='height:900px' />
</div>
<script type='text/javascript'>
d3.json('postes-CR-CNRS-Classe2.json', function(data) {
nv.addGraph(function() {
var chart = nv.models.stackedAreaChart()
.margin({right: 100})
.x(function(d) { return d[0] })
.y(function(d) { return d[1] })
.transitionDuration(500)
.showControls(true)
.clipEdge(true);
//Format x-axis labels with custom function.
chart.xAxis
.tickFormat(d3.format('d'));
chart.yAxis
.tickFormat(d3.format(''));
d3.select('#chart-classe2 svg')
.datum(data)
.call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
})
</script>
</body>
</html>