Hi Team,
I am creating a bubble chart but the bubbles are a little bit messy. How can I make them more distinct? If you can see in the screenshot below overlapping bubbles make it difficult to distinguish.
My code is:
for type_name, economic_type in type_data.items():
fig.add_trace(go.Scatter(
x=economic_type['Risk'], y=economic_type['Return_6m'],
name=type_name, text=economic_type['ISO CODE'],
marker_size=economic_type['Cap_USD'],marker_color=economic_type['Color']))
fig.update_traces(mode='markers+text', marker=dict(sizemode='area',
sizeref=sizeref, line_width=1, line_color='white', opacity=0.35 ))
Thanks for your help.
Best,
Evangelos