I have a scatteplot Iโm trying to present, with lots of symbols and colors. This makes the default legend unreadable.
Is there a way to hide the legend (equivalent, or similar to showlegend=False when using traces and graph objects)?
Hereโs my graphing line:
fig = px.scatter(df_revised, x='df_x', y = 'df_y', color = 'type', symbol = 'country', hover_data = ['id'], marginal_y="histogram", marginal_x="histogram")
