Chartjs-Chartjs – no smooth rendering on time series plot

0πŸ‘

βœ…

To have smooth rendering, you need to define/increase the animation.duration option.

options: {
  animation: {
    duration: 2000
  },
  ...

duration: The number of milliseconds an animation takes.

Leave a comment