-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
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
How do I omit the Shapekey? #1233
Comments
Please provide the code of your plot statement, e.g. are you using more than one key? Did you try |
Oh that did it, thank you! |
I don't think that really solves the issue because if you want a ColorKey but no ShapeKey then plot(
layer(x=rand(10), y=rand(10), shape=rand(0:1,10), Geom.point),
layer(x=rand(10), y=rand(10), shape=rand(0:1,10), Theme(default_color=colorant"red"), Geom.point),
Guide.manual_color_key("",["A","B"],["deepskyblue","red"]),
# Guide.shapekey("",[""],[-10cm,-10cm]),
) |
I think the |
There is also
Each way would be useful for different situations, so it would be good to implement both. |
This is probably an obvious one but I am unable to completely omit
Guide.shapekey
. I triedGuide.shapekey(nothing)
as an argument, like withGuide.xlabel(nothing)
, but I got unmatched argument errors. The closest I could get to was withGuide.shapekey(;title="", labels=[""], pos=Float64[])
but that seems messy and also still retains the symbols and numbers.The text was updated successfully, but these errors were encountered: