it achieve this via the standard scatter!(xxx; label = "something") infrastructure, after which I call axislegend.
I want to use the same plot on the right. On top of it I want to plot other elements with their legend entries. I don’t want to repeat the previous legend entries.
I thought doing the conditional scatter!(xxx; label = add_legend ? "something" : "") would solve things. but it doesn't because the legend entry is there.
I ask therefore: what is the default keyword argument value for label? So that I can programmatically / conditionally hide some legend entries in axislegend?