forked from mart1oeil/cnrs-hiring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cnrs-hiring-ie-externe.html
52 lines (42 loc) · 1.26 KB
/
cnrs-hiring-ie-externe.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>CNRS - Évolution de l'ouverture de postes au concours externe d'Ingénieurs d'études au CNRS</title>
<link href="./nv.d3.css" rel="stylesheet">
<script src="./d3.v3.js"></script>
<script src="./nv.d3.js"></script>
</head>
<body>
<figure>
<div id='chart-total'>
<svg style='height:900px' />
</div>
<figcaption>Évolution de l'ouverture de postes au concours d'Ingénieurs d'études au CNRS</figcaption>
</figure>
<hr/>
<script type='text/javascript'>
d3.json('postes-IE-CNRS-Externe.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>
</body>
</html>