Hi Here,
I’m using from plotly.subplots import make_subplots and I have two list for my column_ and row_titles:
col_name = list(df.columns)
row_name = col_name[::-1] # the inverse of col_name
fig = make_suplots(rows=4, cols=4, start_cell="bottom-left", column_titles=col_name , row_titles=row_name )
I managed making somthing like that: (see picture)
As you can see the column_titles is on the top and the row_titles on the right side of the plot
It is possible to set the column_titles on the bottom and the row_titles on the left side?