Ever notice how if you put values for the x-axis or y-axis that start positive and go negative, the heatmap canโt make the plot.
FF=rand(10,20)
Plots.heatmap(1:20,1:10,FF) # What it should look like
Plots.heatmap(1:20,-1:-1:-10,FF) # I'd like a different Y axis representation -- does not look correct
Plots.heatmap(-1:-1:-20,1:10,FF) # Also does not look correct
#I have to do something like this:
values=[string(Int(round(i))) for i in -1:-1:-20]
Plots.heatmap(values,1:10,FF)
# This messes up the plotlyjs smart highlighter.
Seems like a bug