# Animations

The drag-to-zoom animation can be customized by configuring the zoom transition in your chart config:

{
  options: {
    transitions: {
      zoom: {
        animation: {
          duration: 1000,
          easing: 'easeOutCubic'
        }
      }
    }
  }
}

If you want to disable zoom animations:

{
  options: {
    transitions: {
      zoom: {
        animation: {
          duration: 0
        }
      }
    }
  }
}
Last Updated: 11/16/2021, 3:06:42 PM