How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Circle brush for scatter plot

calendar_today August 19, 2026 person @AnnMarieW domain plotly

Hi @binary Can you say more about what you are looking for? If you are just trying to allow the user to draw multiple circles you could use something like: import plotly.express as px df = px.data.iris() fig = px.scatter( df, x=”sepal_width”, y=”sepal_length”, ) fig.update_layout( dragmode=”drawcircle”, modebar_add=[“drawcircle”, “eraseshape”], ) fig.show() Or are you trying to allow the user to select points using a circle rather than lasso?

open_in_new Read original post