I have a plotly figure which I center the title using -
fig.update_layout(
title={
'text' : title,
'x':0.5,
'xanchor': 'center'
})
I have multiple graphs and I add this to every one of them. I wonder if I can define it in advance, e.g using config object or settings, and not do it for every chart.