-
Notifications
You must be signed in to change notification settings - Fork 0
/
charts.html
111 lines (91 loc) · 2.19 KB
/
charts.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<style>
body {
background-color: #666;
}
.bar {
fill: #1f78b4;
}
.bar:hover {
fill: #a6cee3;
}
.bar.positive {
fill: #33a02c;
}
.bar.positive:hover {
fill: #b2df8a;
}
.bar.negative {
fill: #e31a1c;
}
.bar.negative:hover {
fill: #fb9a99;
}
.title {
font: bold 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.axis {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis path {
display: none;
}
div.block {
padding: 1em;
}
</style>
</head>
<body>
<h1>Représentations graphiques</h1>
<script src="d3.js" type="text/javascript"></script>
<script src="wrap.js" type="text/javascript"></script>
<script src="waterfallChart.js" type="text/javascript"></script>
<script src="meanChart.js" type="text/javascript"></script>
<script type="text/javascript">
var margin = {top: 80, right: 90, bottom: 80, left: 90},
width = 680 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var act = 1600;
var rawWaterfall = [
{ name: 'Montant forfaitaire', value: 990 },
{ name: 'Bonification', value: 160 },
{ name: '61% des revenus d’activité', value: 0.61*act },
{ name: 'Forfait logement', value: 70 },
{ name: 'Revenus d’activité', value: act },
{ name: 'Revenus hors activité', value: 10 },
];
var rawMean = [
{ name: 'Prime d’activité fictive pour Décembre 2018', value: 300 },
{ name: 'Prime d’activité fictive pour Janvier 2019', value: 100 },
{ name: 'Prime d’activité fictive pour Février 2019', value: 200 },
{ name: '', value: 0 },
{ name: 'Prime d’activité pour Mars 2019', value: 200 },
];
var step = 1;
var values = [rawWaterfall, rawMean];
var meanC = meanChart(d3.select("body"), {
height: height,
margin: margin,
width: width,
});
var waterfallC = waterfallChart(d3.select("body"), {
height: height,
margin: margin,
width: width,
});
waterfallC.refresh(rawWaterfall);
waterfallC.title("Votre prime d'activité fictive de Février 2019");
meanC.refresh(rawMean);
meanC.title("Votre prime d'activité de Mars 2019");
</script>
</body>
</html>