In matplotlib, we can draw heatmap / image on a section of the plot without filling it by ax.imshow(im, extents(xmin, xmax, ymin, ymax).
Is there anyway to do this in Plotly?
In matplotlib, we can draw heatmap / image on a section of the plot without filling it by ax.imshow(im, extents(xmin, xmax, ymin, ymax).
Is there anyway to do this in Plotly?
Hi @JohnBarren welcome to the forum! If you use px.imshow
or go.Image
you can use fig.update_xaxes
and fig.update_yaxes
to change the axis range. You can also pass x
and y
arguments to px.imshow
to use different values than the default (indices of pixels). A last possibility is to use a layout image.