Pie charts (2x) + Bar chart

Hi @rajpmehta ,

Try to play around with number of grids.

Maybe you can try to set rows=2 and cols=3, instead of rows=1and cols=2.

fig = make_subplots(rows=2, cols=3, specs=[[{}, {},{}],[{}, {'type':'domain'}, {'type':'domain'}]])

Put first pie chart at 2nd row and 2nd column.
Second one at 2nd row and 3rd column.
The size of pie charts will be decreased.

Or you can adjust the number of grids as needed.
Hope this help.

1 Like