I'd like to remove the tick labels from my secondary y-axis, while leaving the tick labels from the primary y-axis.
fig.add_trace(go.Scatter(x=df.index, y=df['A'],
line=dict(color='rgba(255, 255, 0, 0.25)', width=1)), secondary_y=False, row=1, col=1)
fig.add_trace(go.Scatter(x=df.index, y=df['B'],
line=dict(color='rgba(128, 75, 183, 0.5)', width=1)), secondary_y=True, row=1, col=1)
fig.update_yaxes(showticklabels=True, row=1, col=1, secondary_y=False)
The above does not resolve the issue, as tick labels of secondary y-axis still are visible.
Any ideas?