Chartjs-How do I control the entry point for the animation in chartjs line chart. I want all datasets to enter from the bottom of the chart

0👍

Finally found the right syntax. In your options you can add

animation: {
   y: {from: 500}
},

Leave a comment