diff --git a/lib/matplotlib/axes/_base.py b/lib/matplotlib/axes/_base.py index b3b98c04607f..e8f161ece595 100644 --- a/lib/matplotlib/axes/_base.py +++ b/lib/matplotlib/axes/_base.py @@ -3222,7 +3222,8 @@ def minorticks_on(self): ax.set_minor_locator(mticker.LogLocator(s.base, s.subs)) elif scale == 'symlog': s = ax._scale - ax.set_minor_locator(mticker.SymLogLocator(s.base, s.subs)) + ax.set_minor_locator( + mticker.SymmetricalLogLocator(s.base, s.subs)) else: ax.set_minor_locator(mticker.AutoMinorLocator())