How to annotate points in a strip plot

Hi there,

is there a way to annotate points in a px.strip plot. I read the documentation but couldn’t find it so I’m wondering if there are ways to do it.

The current code is like below:

fig = px.strip(data_frame=division_summary.sort_values(by=‘audit_cycle’,ascending=False),
y=‘score_pct’,
color=‘audit_cycle’,
facet_col=‘division’,
stripmode=‘group’,

title = ‘Overall Score by Entity’)

fig.for_each_annotation(lambda x: x.update(text=x.text.split(‘=’)[-1]))

fig.show()

Current figure and how I want it looks

Thanks and appreciate your helps!!