Created
May 31, 2024 11:32
-
-
Save jkrumbiegel/1709417a870cb4aef09b2b8b04554fc2 to your computer and use it in GitHub Desktop.
Makie override axis scatter markersize in Legend
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f, ax, sc = scatter(cumsum(randn(1000)), markersize = 3, label = "Scatter") | |
leg = Legend(f[1, 2], ax) | |
leg.entrygroups[][1][2][1].elements[1].attributes.markersize = Observable(10) | |
notify(leg.entrygroups) | |
f |
Author
jkrumbiegel
commented
May 31, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment