-
Notifications
You must be signed in to change notification settings - Fork 0
/
mesStatistiques.html
169 lines (147 loc) · 7.4 KB
/
mesStatistiques.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Création de fiche porteur | Indicateurs French Tech</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/prettyPhoto.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="images/ico/apple-touch-icon-57-precomposed.png">
<!-- D3.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>
</head>
<body>
<header class="navbar navbar-inverse navbar-fixed-top white" role="banner">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="indexUser.html"><img src="images/logo.png" alt="logo"></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="indexUser.html">Accueil</a></li>
<li class="active"><a href="Indicateurs.html">Projets</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><img src="images/ProfilPic/profile.png" alt="profil" class="img-circle" width="40" height="40"></a>
<ul class="dropdown-menu">
<li class="lightFrenchTech"><a href="career.html">Mon Profil</a></li>
<li class="pinkFrenchTech"><a href="career.html">Paramètres</a></li>
<li class="pinkFrenchTech"><a href="blog-item.html">Déconnexion</a></li>
</ul>
</li>
</ul>
</div>
</div>
</header><!--/header-->
<section id="title" class="pinkFrenchTech">
<div class="container">
<div class="row">
<div class="col-sm-6">
<h2>Statistiques personelles</h2>
<p>Accedez aux statistiques vous concernant</p>
</div>
</div>
</div>
</section><!--/#title-->
<section id="Indicateurs" class="container">
<div class="row">
<div class="col-sm-12">
<!--tabs -->
<ul class="nav nav-tabs">
<li><a href="Indicateurs.html">Mes Projets</a></li>
<li class="active"><a href="#">Mes Statistiques</a></li>
<li><a href="FicheProjet.html">Nouveau Projet</a></li>
</ul>
<!--/tabs -->
<div class=well></div>
<div class="row">
<div class="col-md-4">
<div class="thumbnail">
<a href="#">
<div id="chart" class="chart radarChart"></div>
<!--Scripts radarChart-->
<script src="js/radarChart.js"></script>
<script >
//////////////////////////////////////////////////////////////
//////////////////////// Set-Up //////////////////////////////
//////////////////////////////////////////////////////////////
var margin = {top: 20, right: 0, bottom: 20, left: 0},
width = Math.min(700, window.innerWidth - 10) - margin.left - margin.right,
height = Math.min(width, window.innerHeight - margin.top - margin.bottom - 20);
//////////////////////////////////////////////////////////////
////////////////////////// Data //////////////////////////////
//////////////////////////////////////////////////////////////
var data = [
[//iPhone
{axis:"Formateur",value:3},
{axis:"Accompagnateur",value:4},
{axis:"Financeur",value:8},
{axis:"Conseiller",value:2}
],[//Samsung
{axis:"Formateur",value:7},
{axis:"Accompagnateur",value:4},
{axis:"Financeur",value:5}
]
];
//////////////////////////////////////////////////////////////
//////////////////// Draw the Chart //////////////////////////
//////////////////////////////////////////////////////////////
var color = d3.scale.ordinal()
.range(["#EDC951","#CC333F","#00A0B0"]);
var radarChartOptions = {
margin: margin,
maxValue: 10,
levels: 5,
roundStrokes: true,
color: color
};
//Call function to draw the Radar chart
RadarChart(".radarChart", data, radarChartOptions);
</script>
<div class="caption center">
<h3>Contributions</h3>
</div>
</a>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<div class="squaresize" style="background-image:url('images/Graphs/graph2.png');"></div>
<div class="caption center">
<h3>Niveau d'accompagnement</h3>
</div>
</a>
</div>
</div>
</section>
<footer id="footer" class="white">
<div class="container">
<div class="row">
<a target="_blank" href="http://www.saint-etiennefrenchtech.fr/" title="French Tech">© 2017 French Tech Saint Etienne</a>
</div>
</div>
</footer><!--/#footer-->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.prettyPhoto.js"></script>
<script src="js/main.js"></script>
</body>
</html>