Anyone knows how to center these guys?
1 Like
DBC should do this. Here is a link:
Do you mean i should post this question there? But isnβt this dcc.Graph, so dbc hasnβt anything to do with it and this forum is the right place to post this question?
Hi @pshinde
Iβm not sure if its possible, see ModeBar options here: layout | Python | Plotly
If you want not to show the ModeBar use:
config={ 'displayModeBar': False }
I think your question will receive more and better answers if you tag the question as Plotly instead of Dash
Hope it helps
1 Like
True that, I re-tagged it. Thanks!
I found a solution here with some .css code:
in my case:
#fig .modebar {
position: fixed;
top: 95%;
left: 40%;
}
for
dcc.Graph(id='fig', ...)
to put it on central bottom position
2 Likes