px.bar(..., template="simple_white")
px.bar(..., labels={"gndr": "Gender", "cnt": "Total Participants"})
fig.for_each_xaxis(lambda xaxis: xaxis.update(showticklabels=True))
fig.for_each_yaxis(lambda yaxis: yaxis.update(showticklabels=True))
fig.update_layout(showlegend=False)
fig.update_layout(showlegend=True, legend=dict(yanchor="bottom", xanchor="right", y=0.3))
fig.update_traces(selector={"name": "unique_skus"}, name="SKU")
fig.update_traces(selector=1, name="Product ID")
fig.add_annotation(text="<b>Bold</b> text <br> with break", xref="x domain", yref="y domain", x=0.6, y=0.8, showarrow=False)
fig.update_traces(texttemplate='%{value:.2f}%')