Disable animations and transitions in a Chartjs instance
Posted on December 18, 2021
Here the tip:
const config = {
type: 'line',
data: [],
options:{
animation: false,
}
}
const chart = new Chart('#chart', config)
Posted on December 18, 2021
Here the tip:
const config = {
type: 'line',
data: [],
options:{
animation: false,
}
}
const chart = new Chart('#chart', config)