I want to make a subplot with 1 row and 2 columns.
In row1-col1, I want to create a grouped bar chart.
In row1-col2, I want to create a stacked bar chart.
The problem is how do I update the layout i.e. set ābarmodeā property for each subplot individually?
If i use fig.update_layout(barmode=āgroupā), then both the subplots become grouped which I donāt want.
Unfortunately, the method doesnāt have ārowā, ācolā properties like update_xaxes(), update_yaxes().
Otherwise, it would have been easy to achieve my goal.
Can someone help?