Skip to content
Extraits de code Groupes Projets
Valider 1a9f5a52 rédigé par hugo's avatar hugo
Parcourir les fichiers

ajout "pas favoris" pour graphe

parent f9018692
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -123,30 +123,34 @@ while($row = mysqli_fetch_assoc($result2)) :?>
influ.push({y: <?= $row['nb'] ?>,label: '<?= $row['nom_artiste'] ?>'});
<?php endwhile; ?>
window.onload = function () {
var chart = new CanvasJS.Chart("chartContainer", {
backgroundColor: "transparent ",
theme: "theme2",
animationEnabled: true,
title:{
text: "Répartitions des 10 premier favoris"
},
legend:{
cursor: "pointer",
},
data: [{
type: "doughnut",
innerRadius: 90,
toolTipContent: "<b>{label}</b>: {y} foollowers (#percent%)",
dataPoints: influ,
}]
});
chart.options.data[0].dataPoints = influ;
chart.render();
if (influ.length > 0) {
window.onload = function () {
var chart = new CanvasJS.Chart("chartContainer", {
backgroundColor: "transparent ",
theme: "theme2",
animationEnabled: true,
title:{
text: "Répartitions des 10 premier favoris"
},
legend:{
cursor: "pointer",
},
data: [{
type: "doughnut",
innerRadius: 90,
toolTipContent: "<b>{label}</b>: {y} foollowers (#percent%)",
dataPoints: influ,
}]
});
chart.options.data[0].dataPoints = influ;
chart.render();
}
}
else {
document.getElementById('chartContainer').innerHTML = 'Pas de favoris';
}
</script>
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter