You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import plotly.express as px
import numpy as np
img = np.random.random((10, 10))
px.imshow(img, zmin=0.3, zmax=0.7)
I think this is because the Heatmap trace uses instead the range_color argument which was quite introduced quite late in the process. It's easy to fix, we just have to decide first if the API is ok as it is.