We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
]activate --temp; add Makie
I would expect each of these lines to have a different color. It used to work that way, and lines! does work that way.
lines!
using GLMakie fig = Figure() axis = Axis(fig[1,1]) scatterlines!(axis, 0:1, 1:2, label="A") scatterlines!(axis, 0:0.1:1, 2:0.1:3, label="B") scatterlines!(axis, 0:1, 3:4, label="C") Legend(fig[1,2], axis, "Label") display(fig)
using GLMakie fig = Figure() axis = Axis(fig[1,1]) lines!(axis, 0:1, 1:2, label="A") lines!(axis, 0:0.1:1, 2:0.1:3, label="B") lines!(axis, 0:1, 3:4, label="C") Legend(fig[1,2], axis, "Label") display(fig)
The text was updated successfully, but these errors were encountered:
I can't replicate this on master (i.e., it works as expected) but I can on the latest version as you said @nathanrboyer.
The only thing which touched scatterlines since the last release was #3603, and running that code does indeed solve the issue:
scatterlines
You need to run
Makie.conversion_trait(::Type{<: ScatterLines}) = PointBased()
although I am not entirely sure why this would fix a theming issue. Maybe because cycling was only enabled for point-based plots?
Sorry, something went wrong.
Closing as fixed/not reproducible
No branches or pull requests
]activate --temp; add Makie
) Same behaviorI would expect each of these lines to have a different color. It used to work that way, and
lines!
does work that way.The text was updated successfully, but these errors were encountered: