You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a regression to Makie 0.19.10 and I suspect that this is due to PR #3275.
I can fix the series ignoring the color keyword by deleting this line: delete!(plot_attr, :color) # Color may contain Cycled(1), which needs the axis to get resolved to a color
but then the tests fail with
MethodError: no method matching to_color(::Cycled)
The text was updated successfully, but these errors were encountered:
I am running current master.
]activate --temp; add Makie
)julia> versioninfo()
Julia Version 1.9.2
Commit e4ee485e909 (2023-07-05 09:39 UTC)
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: 16 × AMD Ryzen 7 PRO 5850U with Radeon Graphics
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-14.0.6 (ORCJIT, znver3)
Threads: 1 on 16 virtual cores
Environment:
JULIA_IMAGE_THREADS = 1
The
series
plotting function ignores the color keyword and thereby does not work for series with more than 7 entries.This is a regression to Makie 0.19.10 and I suspect that this is due to PR #3275.
I can fix the series ignoring the color keyword by deleting this line:
delete!(plot_attr, :color) # Color may contain Cycled(1), which needs the axis to get resolved to a color
but then the tests fail with
The text was updated successfully, but these errors were encountered: