Removed :grid from pyplot.jl

This commit is contained in:
sfoo 2017-02-21 07:24:06 -08:00
parent b83916da13
commit 337fc9ce9d

View File

@ -1057,11 +1057,11 @@ function _before_layout_calcs(plt::Plot{PyPlotBackend})
lab[:set_family](axis[:tickfont].family) lab[:set_family](axis[:tickfont].family)
lab[:set_rotation](axis[:rotation]) lab[:set_rotation](axis[:rotation])
end end
if sp[:grid] # if sp[:grid]
fgcolor = py_color(sp[:foreground_color_grid]) # fgcolor = py_color(sp[:foreground_color_grid])
pyaxis[:grid](true, color = fgcolor) # pyaxis[:grid](true, color = fgcolor)
ax[:set_axisbelow](true) # ax[:set_axisbelow](true)
end # end
py_set_axis_colors(ax, axis) py_set_axis_colors(ax, axis)
end end