Merge pull request #1251 from daschw/pyplot-legend
PyPlot: change legend symbols for shapes and filled plots
This commit is contained in:
commit
892d68e792
@ -1221,15 +1221,16 @@ function py_add_legend(plt::Plot, sp::Subplot, ax)
|
|||||||
for series in series_list(sp)
|
for series in series_list(sp)
|
||||||
if should_add_to_legend(series)
|
if should_add_to_legend(series)
|
||||||
# add a line/marker and a label
|
# add a line/marker and a label
|
||||||
push!(handles, if series[:seriestype] == :shape
|
push!(handles, if series[:seriestype] == :shape || series[:fillrange] != nothing
|
||||||
PyPlot.plt[:Line2D]((0,1),(0,0),
|
pypatches[:Patch](
|
||||||
color = py_color(_cycle(series[:fillcolor],1)),
|
edgecolor = py_color(_cycle(series[:linecolor],1)),
|
||||||
linewidth = py_dpi_scale(plt, 4)
|
facecolor = py_color(_cycle(series[:fillcolor],1)),
|
||||||
|
linewidth = py_dpi_scale(plt, clamp(series[:linewidth], 0, 5)),
|
||||||
)
|
)
|
||||||
elseif series[:seriestype] == :path
|
elseif series[:seriestype] == :path
|
||||||
PyPlot.plt[:Line2D]((0,1),(0,0),
|
PyPlot.plt[:Line2D]((0,1),(0,0),
|
||||||
color = py_color(_cycle(series[:fillcolor],1)),
|
color = py_color(_cycle(series[:fillcolor],1)),
|
||||||
linewidth = py_dpi_scale(plt, 1),
|
linewidth = py_dpi_scale(plt, clamp(series[:linewidth], 0, 5)),
|
||||||
marker = py_marker(series[:markershape]),
|
marker = py_marker(series[:markershape]),
|
||||||
markeredgecolor = py_markerstrokecolor(series),
|
markeredgecolor = py_markerstrokecolor(series),
|
||||||
markerfacecolor = py_markercolor(series)
|
markerfacecolor = py_markercolor(series)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user