title, how do i remove the trace 0 and trace 1 in the legend
the code is standard subplot code
thank you
fig = make_subplots(cols = 2)
fig.add_trace(go.Bar(x = data['a'], y =data['b'], row =1, col=1)
fig.add_trace(go.Bar(x =data['a'], y = data['c'], row =1, col =2)
fig.show()