Hello,
This code gives me the desired chart. But how do i add the total labels for both cols ?
fig = px.bar(d, x=d[‘AXIS’], y=[‘col1’,‘col2’], barmode=‘group’,text=)
I succeeded to do it for one trace.
fig = px.bar(d, x=d[‘AXIS’], y=‘col1’, barmode=‘group’,text=d[‘col1’])