change legend symbols for shapes and filled plots on pyplot
This commit is contained in:
parent
18619e9010
commit
1aa780f0a2
@ -1221,10 +1221,11 @@ 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, series[:linewidth])
|
||||||
)
|
)
|
||||||
elseif series[:seriestype] == :path
|
elseif series[:seriestype] == :path
|
||||||
PyPlot.plt[:Line2D]((0,1),(0,0),
|
PyPlot.plt[:Line2D]((0,1),(0,0),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user