How to hide median in boxplots?

I want to draw a boxplot with means instead of medians. Is it possible? Thanks.

Hi @Madrigallo ,
I don’t know if it would make sense to β€œhide” a median in a boxplot, but to show the mean as well you can use:

fig.update_traces(boxmean=True)

Cheers, Thomas