Open melyso opened 1 month ago
@asinghvi17 might have a clue.
Looks like this is caused by a change in Makie - PlotList
plots which we use here are no longer decomposed and splatted into the scene. Will look into a fix on the Makie end - thanks for the report!
If you need this immediately, there is a one line solution - define the following function by running this code in your Julia session.
Makie.get_plots(p::Makie.PlotList) = p.plots
Then, you should get something like this as your final figure:
Describe the bug 🐞 I tried to plot an
ODESolution
with legends, following the code example found here.Expected behavior I expected the
axislegend(a)
-line to add a generic legend to the plot. Instead, I got the following error-message:Minimal Reproducible Example 👇
Error & Stacktrace ⚠️
Environment (please complete the following information):
using Pkg; Pkg.status()
using Pkg; Pkg.status(; mode = PKGMODE_MANIFEST)
versioninfo()