Currently, my legend is overlapping with my graph like this:
Iβm using Dash to display this graph through a callback. On startup it looks like this, but otherwise it looks fine. My callback returns this:
dict(
data=[dict(
labels= ...,
type='pie', textinfo='none'
)],
layout=dict(
showlegend=True, legend=dict(orientation='h'),
colorway=px.colors.qualitative.Pastel1,
margin=dict(l=0, r=0, t=0, b=0)
)
)
Any help would be appreciated!