Hi all,
I created an app with dash, which has the following:
polar_fig = px.bar_polar(melted, r=“value”, theta=‘variable’,color=‘variable’, color_discrete_map={factor: color for factor, color in zip(melted.variable.tolist(), melted.color.tolist())})
dcc.Graph(figure=polar_fig,animate=True,config = {‘displayModeBar’: False})
But for some reason, the app doesn’t rerender.
It does rerender when I remove the animate=True.
Also, when I change the polar_fig into a bar chart, the animation works.
I also tried to have the dcc.Graph in the app layout (as follows) and passing a figure object, but that doesn’t work either.
Any suggestions? thanks!