# 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: 3/22/2023, 1:26:48 PM