Hi, I’m using Plots
’s :pythonplot
backend with heatmap
and found the keyword cmap=:jet
does not have any effect when legend
or colorbar
is false. Since If instead I use gr
, it works fine:
julia> heatmap(yc[:],xc,Itc[:,:,3NH[3]÷4],legend=false,cmap=:jet)
julia> heatmap(yc[:],xc,Itc[:,:,3NH[3]÷4],legend=true,cmap=:jet)
Any idea on how to fix it? I don’t want the colorbar. I use
:pythonplot
for other favorable behaviors that gr
and other backends cannot all have.