3D volume plot is blank with Plots.jl + GR.jl

The backend is GR. Thanks.

julia> using Plots

julia> heatmap(rand(10,10,10))

julia> versioninfo()
Julia Version 1.10.8
Commit 4c16ff44be (2025-01-22 10:06 UTC)
Build Info:
  Official https://julialang.org/ release
Platform Info:
  OS: Windows (x86_64-w64-mingw32)
  CPU: 8 × Intel(R) Core(TM) i7-4771 CPU @ 3.50GHz
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-15.0.7 (ORCJIT, haswell)
Threads: 1 default, 0 interactive, 1 GC (on 8 virtual cores)

(@v1.10) pkg> st
Status `C:\Users\ytian\.julia\environments\v1.10\Project.toml`
  [6e4b80f9] BenchmarkTools v1.6.0
  [824d6782] Bonito v4.0.1
  [7073ff75] IJulia v1.26.0
  [510215fc] Observables v0.5.5
  [91a5bcdd] Plots v1.40.9
  [276b4fcb] WGLMakie v0.11.1

(@v1.10) pkg>

It seems to be broken - see issue here.
As workaround:

using Plots
Plots.GR.volume(rand(10,10,10))

1 Like