Is there a way to customize the colors of individual bars in a group bar chart?
In here, under the section "Customizing Individual Bar Colors" shows the manner in which customization can be done for the regular bar charts.
But in barmode=group settings, I could only set the colors for the group. Am wondering how I can customize the colors for a single bar.
fig_company = px.bar(
df,
y = "company",
x = "revenue",
color = "region",
orientation = 'h',
text_auto = True,
barmode="group",
color_discrete_map={
"south":"#DBCFB0",
"north":"#545775"}
)