I noted that meshscatter does not produce a symbol in the legend and trying to create a MWE I got the following:
julia> fig = Figure()
julia> ax = Axis3(fig[1, 1])
Axis3()
julia> meshscatter!(ax, 1, 1, 1, label = "hello")
MeshScatter{Tuple{Vector{Point{3, Float64}}}}
julia> Legend(fig[1, 2], ax)
ERROR: `legendelements` returned an empty list for content element of type MeshScatter{Tuple{Vector{Point{3, Float64}}}}. That could mean that neither this object nor any possible child objects had a method for `legendelements` defined that returned a non-empty result.
Stacktrace:
I noted that
meshscatter
does not produce a symbol in the legend and trying to create a MWE I got the following: