FHist.jl icon indicating copy to clipboard operation
FHist.jl copied to clipboard

[Makie] `stackhist` doesn't fill properly under yscale=log

Open Moelf opened this issue 1 year ago • 1 comments
trafficstars

using FHist, CairoMakie

begin
       h1 = Hist1D(randn(10000); binedges=-3:0.1:3)
       h2 = Hist1D(randn(10000), binedges=-3:0.1:3)
       fig = Figure()
       ax = Axis(fig[1,1], yscale=log10)
       stackedhist!(ax, [h1, h2])
       current_figure()
end

image

cc. @mfarrington1

Moelf avatar Oct 30 '24 10:10 Moelf