diff options
| author | clyhtsuriva <clyhtsuriva@gmail.com> | 2020-05-20 12:03:31 +0200 |
|---|---|---|
| committer | clyhtsuriva <clyhtsuriva@gmail.com> | 2020-05-20 12:03:31 +0200 |
| commit | 5d11a3e70f79acaae1f98a9f62fee7b1ec88952b (patch) | |
| tree | d6bd43ea4438530261d9b2d94119c68aa276891d /www/html/pie.js | |
| parent | 1ef55833399d4a95560153f0d280f2efd77af2e2 (diff) | |
| download | ATS-5d11a3e70f79acaae1f98a9f62fee7b1ec88952b.tar.gz ATS-5d11a3e70f79acaae1f98a9f62fee7b1ec88952b.tar.bz2 ATS-5d11a3e70f79acaae1f98a9f62fee7b1ec88952b.zip | |
suprression graphique + ajout de loop bilan
Diffstat (limited to '')
| -rw-r--r-- | www/html/pie.js | 35 |
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, - } - }); |
