Hi, I would like to ask how to set the column_title a bit away from the plots, not overlaying along with the secondary_y?
“”"
fig = make_subplots(rows=len(deckNum), cols=len(zoneNum),
specs=[[{“secondary_y”: True}, {“secondary_y”: True}, {“secondary_y”: True}],
[{“secondary_y”: True}, {“secondary_y”: True}, {“secondary_y”: True}],
[{“secondary_y”: True}, {“secondary_y”: True}, {“secondary_y”: True}],
[{“secondary_y”: True}, {“secondary_y”: True}, {“secondary_y”: True}]],
row_titles=[i for i in deckNum],
column_titles=[i for i in zoneNum],
x_title=‘ZONE’,
y_title=‘DECK’,
horizontal_spacing=0.05,
column_width=[0.2,0.2,0.2])
“”"