Hi, I am currently using Plotly, python, and Dash to animate team sport data (e.g. graphical recreation of match activity). However, I have noticed that when I begin to render the graph that it gets “stuck” and never renders if I attempt to animate more than 24 minutes of a match. Here’s the animated graph rendering portion of the code currently:
fig = px.scatter(df, x="X", y="Y", color="Team", hover_name="NickName", animation_frame="GameTime",
animation_group="NickName", range_x=[-4,110], range_y=[-4,72], size='size', size_max=9,
width=900, height=700, color_discrete_map=color_discrete_map,
hover_data={'X': False,'Y':False,'GameTime':False,'size':False, 'Team':False, 'Position':False})
Is there a current limitation on the duration or size of an animated graph? Ultimately I’d like to animate 45 minutes+ of a match but that doesn’t seem possible currently.
Thank you!