Hello Dash community,
I have been working on my web app and it finally works pretty well…locally. As I understand, animations are not yet supported by Dash, therefore I found a workaround by using an Interval that updates the figure attribute of a Graph. However, transitions are not very smooth. I found an option animate and animate_options for Graph objects but I don’t know what keywords are accepted for animate_options to obtain smooth transitions. Ideally, I would like to obtain something as smooth as the Lorentz attractor example here. I tried
animation_options = dict(
transition = dict(duration = 0),
frame = dict(duration = 0, redraw = False),
)
but it doesn’t change anything…do you guys have any idea of what keywords I should use?
Also, I uploaded my app on Heroku and animations are waaaaaaaaaaay sluggish than locally…do you have any idea why is that?
Thank you for your answers!