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.
The text was updated successfully, but these errors were encountered:
So of course it's a bit more complicated than I originally thought because in the coloraxis if you give cmin you must also give cmax (I don't see why, btw). Working on it!
See for example
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.The text was updated successfully, but these errors were encountered: