In GLMakie I need a layout with several heatmaps. If I use heatmap
works as expected (2D plot), however using heatmap!
produces a 3D plot of the heatmap. Here is reproducer with a single heatmap.
using GLMakie
data = [ x * y for x in 1:100, y in 1:100 ]
heatmap(data)
produces
but the following code
using GLMakie
data = [ x * y for x in 1:100, y in 1:100 ]
fig = Figure()
scene = LScene(fig[1, 1])
heatmap!(scene, data)
display(fig)
produces
Any suggestion? Thanks.