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

ecdfplot! doesn't cycle colors

Open jerlich opened this issue 5 months ago • 6 comments

using GLMakie
# using CairoMakie
# Both give same bug

foo() = begin
       f = Figure()
       ax = Axis(f[1,1])
       for i = 1:5
           ecdfplot!(ax, randn(1000))
       end
       f
end

foo()

Makie Versions: CairoMakie 0.12. GLMakie v0.10.9

  • [X] can you reproduce the bug with a fresh environment ? (]activate --temp; add Makie)
julia> versioninfo()
Julia Version 1.10.5
Commit 6f3fdf7b362 (2024-08-27 14:19 UTC)
Build Info:
  Official https://julialang.org/ release
Platform Info:
  OS: macOS (arm64-apple-darwin22.4.0)
  CPU: 10 × Apple M1 Max
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-15.0.7 (ORCJIT, apple-m1)
Threads: 1 default, 0 interactive, 1 GC (on 8 virtual cores)

jerlich avatar Sep 05 '24 12:09 jerlich