From 7989673eb4b6450bcc3ae50159e367aeef8830fe Mon Sep 17 00:00:00 2001 From: Seth Axen Date: Mon, 15 Feb 2021 14:53:50 -0800 Subject: [PATCH] Allow mincnt --- src/backends/pyplot.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backends/pyplot.jl b/src/backends/pyplot.jl index 9236b42a..dbf94987 100644 --- a/src/backends/pyplot.jl +++ b/src/backends/pyplot.jl @@ -510,6 +510,7 @@ function py_add_series(plt::Plot{PyPlotBackend}, series::Series) end if st == :hexbin + extrakw[:mincnt] = get(series[:extra_kwargs], :mincnt, nothing) extrakw[:edgecolors] = get(series[:extra_kwargs], :edgecolors, py_color(get_linecolor(series))) handle = ax."hexbin"(x, y; label = series[:label],