From 7b902a3361e298fa05d3161e40b97be5b792c9e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Bel=C3=A1k?= <97168298+mbelak-dtml@users.noreply.github.com> Date: Mon, 31 Jul 2023 17:17:40 +0200 Subject: [PATCH] fix: Use previously ignored parameter. (#43) --- edvart/plots.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/edvart/plots.py b/edvart/plots.py index b931cde..1f8de5c 100644 --- a/edvart/plots.py +++ b/edvart/plots.py @@ -166,4 +166,6 @@ def scatter_plot_2d( ax.set_xticks([]) if not show_yticks: ax.set_yticks([]) + if not show_zerolines: + ax.grid(False) plt.show()