aboutsummaryrefslogtreecommitdiff
path: root/www/html/pie.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/html/pie.js')
-rw-r--r--www/html/pie.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/www/html/pie.js b/www/html/pie.js
deleted file mode 100644
index ff54c76..0000000
--- a/www/html/pie.js
+++ /dev/null
@@ -1,35 +0,0 @@
-var list = document.getElementById('nomProtocole');
-var nb = document.getElementById('nbParProtocole');
-var ctx = document.getElementById('protocole');
-var myChart = new Chart(ctx, {
- type: 'doughnut',
- data: {
- labels: list,
- datasets: [{
- label: 'Protocole',
- data: nb,
- backgroundColor: [
- 'rgba(255, 99, 132, 0.2)',
- 'rgba(54, 162, 235, 0.2)',
- 'rgba(255, 206, 86, 0.2)',
- 'rgba(75, 192, 192, 0.2)',
- 'rgba(153, 102, 255, 0.2)',
- 'rgba(255, 159, 64, 0.2)'
- ],
- borderColor: [
- 'rgba(255, 99, 132, 1)',
- 'rgba(54, 162, 235, 1)',
- 'rgba(255, 206, 86, 1)',
- 'rgba(75, 192, 192, 1)',
- 'rgba(153, 102, 255, 1)',
- 'rgba(255, 159, 64, 1)'
- ],
- borderWidth: 10,
- weight: 1
- }]
- },
- options: {
- responsive: true,
- maintainAspectRatio: false,
- }
- });