You need to set duration:0
var myChart3 = new Chart(chart3, {
type: 'doughnut',
data: {
labels: chart3Data.map(m=>m.scoreKey),
datasets: [{
label: 'Self Efficacy',
data: chart3Data.map(m=>m.scoreValue),
backgroundColor: colourSet
}]
},
options: {
maintainAspectRatio: false,
plugins: {
title: {
display: true,
text: 'Self Efficacy',
}
},
animation: {
duration: 0
}
}
});