Hello,
I’m trying to do animated scatter_geo, where color is linked to a continuous variable (revenue), which is changing mix/max value on every animation frame. Is it possible to lock the color range to be the same on all frames? I didn’t manage to find an option to set the same value-range for all frames.
Example:
fig = px.scatter_geo(sales_monthly, lon="lon", lat="lat",
color = "Revenue",
size = "Revenue",
animation_frame="Month",
projection="natural earth",
# projection="orthographic"
# color_continuous_scale=px.colors.sequential.Blues
)
fig.update_geos(fitbounds="locations", showcountries = True)
fig.show()