In Plots.jl we can pass the keyword arguments vmin=0.0, vmax=1.0 in plot commands like heatmap to set the range of the colormap. Is there an equivalent in Makie?
              
              
              1 Like
            
            
          colorrange = (min, max) and if you want different colors in both ends, you do highclip = :black, lowclip = :white.
              
              
              3 Likes