How to position bargraph labels!

I have a subplot with two heatmaps on the right and one bargraph on the left. The problem is that the colorbars and bar-titles overlap eachother on the right of the window. Is there anyway i can move the bar-titles to between bargraph and heatmaps. I know colorbars can be moved with colorbar_x=. is there a similar way to move the bar titles??

hi @urgalurga
Welcome to the Plotly-Dash community. And thank you for your question.

Iā€™m not sure I understand exactly where the overlap is. Would this solution help:

import plotly.express as px
data_canada = px.data.gapminder().query("country == 'Canada'")
fig = px.bar(data_canada, x='year', y='pop', title="Bar Graph Title")
fig.update_layout(title_x=0.6)
fig.show()

Using title_x you can control the x position of the titles. Just choose a number between 0 and 1.