How can we add a ray arround a mark in a scatter during a animate frame ? In Dash

Hi everyone, I would like to know if we can “customize” our marks in a scatter during a animate_frame. I would like to add a ray arround my marks in a scatter point.

Thank you !

Hello @Zic,

Could you please provide an MRE for this?

And possibly provide an example image of what you mean by “a ray”?

Yes sorry,

I would like a circle arround my marker that follow the markers during a animate frame.

I don’t know if it’s possible, this is why I am asking.


the code from the image →

x = [1,1,1]
y = [2,1,2]


figW = px.scatter(x=x, y=y,animation_frame=[1,2,3])
figW.update_traces(marker_size=15)

app = Dash()
app.layout = html.Div([
    dcc.Graph(figure=figW)

])

app.run_server(debug=True, use_reloader=False)

Is it possible to get close enough to the effect you want by styling the marker as a ‘circle-dot’?