From 7a0e03b3746ce8207d5572001a0b96b4d8a8e64e Mon Sep 17 00:00:00 2001 From: "Michael K. Borregaard" Date: Tue, 7 Mar 2017 08:04:15 +0100 Subject: [PATCH] set dotted grid lines for pyplot --- src/backends/pyplot.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/pyplot.jl b/src/backends/pyplot.jl index e1003958..cdc44fb1 100644 --- a/src/backends/pyplot.jl +++ b/src/backends/pyplot.jl @@ -1059,7 +1059,7 @@ function _before_layout_calcs(plt::Plot{PyPlotBackend}) end if sp[:grid] fgcolor = py_color(sp[:foreground_color_grid]) - pyaxis[:grid](true, color = fgcolor) + pyaxis[:grid](true, color = fgcolor, linestyle = ":") ax[:set_axisbelow](true) end py_set_axis_colors(ax, axis)