Hi,
I would like to adjust marker settings in the legend, e.g. size and strokewidth, ideally with the pyplot backend. In the following minimal working example I would like the markers in the legend to be the same as in the plot:
plot([1,2,3],
marker=:circle,
markersize=20,
markerstrokewidth=0,
linetype=:scatter,
legend=true,
)
This looks like
in Plots v1.0.11
. Is this even possible with the current version of Plots.jl
?
Btw, this question was not answered here
- Plot, pyplot() - marker size inside the legend
Changing size of markers in legend with Plots - How to adjust the size of markers in legend box?
and just a couple of days ago here - Modifying legend markersize/linelength of a Plots/PyPlot plot after creation
Thanks in advance to your answers!