Hello, I would like to know if there is a limitation in the number of colors used by the scatterplot, in particular it seems that if I have more than 10 categories the colors are repeated, this is the code that I used:
go.Scattergl(
x=coord.loc[coord.iloc[:, 2] == i, 0],
y=coord.loc[coord.iloc[:, 2] == i, 1],
mode='markers',
opacity=0.5,
marker=dict(
size=4,
line=dict(width=0.2, color='white')),
name=i) for i in cl],
Can you help me?
Thank you.