# 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
}
}
}
}
}
← Options Developers →