Hi all,
I just updated plotly to 4.1.1 after I was using 3.0.0 before. I notice some weird changes to the RdBu colorscale, which seems now identical to the Bluered scale? The colors have been flipped…
Example of how it was in 3.0.0:
And now, with same data, in 4.1.1:
Am I missing something? My code is as below:
go.Scatter(x=xcoords,
y=ycoords,
mode='markers',
showlegend=False,
marker=dict(size=4,
color=values,
cmin=minvalue,
cmax=maxvalue,
colorscale='RdBu',
showscale=False))