Hi,
Has anyone tried to add text to a box plot like shown in the image attached?
I think you’ll want annotations at used at specific coordinates.
fig.add_annotation(
x = 10, #relative x position
y = 20, #y coordinate
text="test annotation"
align="center",
bordercolor="black",
borderwidth=1,
borderpad=4,
bgcolor="white",
opacity=0.8
)
fig.show()