web-dev-qa-db-fra.com

Désactiver l'animation avec Charts.js

J'ai du mal à désactiver l'animation avec charts.js.

Ceci est mon code:

var pieData = [
    {
        value: 30,
        color:"#F38630"
    },
    {
        value : 50,
        color : "#E0E4CC"
    },
    {
        value : 100,
        color : "#69D2E7"
    }    
];

var myPie = new Chart(document.getElementById("canvas").getContext("2d")).Pie(pieData);

Quelqu'un peut-il donner un exemple?

58
Cronner
var pieData = [{
    value: 30,
    color: "#F38630"
}, 
{
    value: 50,
    color: "#E0E4CC"
}, 
{
    value: 100,
    color: "#69D2E7"
}];

var pieOptions = {
    animation: false
};

var ctx = document.getElementById("canvas").getContext("2d");
var myPie = new Chart(ctx).Pie(pieData, pieOptions);

Cela devrait fonctionner ;)

73
Skrzypek
options: {
    animation: {
        duration: 0
    }
}
62
palermuke

Pour empêcher la lecture de toutes les réponses acceptées qui répondent à cet exemple particulier, désactivez l'animation dans le graphique js:

Passez un objet dans vos options lors de l’initialisation du type de graphique et utilisez la paire clé/valeur suivante: animation: false. par exemple. myChart.Bar(myCanvas, {animation:false});

8
user3791372

Essaye ça:

options: {
    animation: {
        duration: 0, // general animation time
    },
    hover: {
        animationDuration: 0, // duration of animations when hovering an item
    },
    responsiveAnimationDuration: 0, // animation duration after a resize
}
5
DungNH

Salut 3 options suivantes fonctionne pour la désactivation de l'animation

1) Désactiver l'animation:

var myLine = Chart.Line(ctx, {
        data: lineChartData,
        options: {
           animation: false,
         }
        });

2) Réduit la durée de l'animation pour 0

var myLine = Chart.Line(ctx, {
        data: lineChartData,
        options: {   
            animation: {
                duration: 0,
            },
         });

3) Option globale:

 Chart.defaults.global.animation = false;
    var myLine = Chart.Line(ctx, {
        data: lineChartData,
        options: {
         }
       });
4

Cela devrait faire l'affaire:

    chartOption = {
        animation:{
            duration: 0
        }
    }
4
Rishabh Sharma

Cela peut aussi être fait globalement:

Chart.defaults.global.animation.duration = 0

Via: https://www.chartjs.org/docs/latest/configuration/animations.html#animation-configuration

4
BBlackwo
options{
    animation: false
}
3
Bibimission