Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 60ec100

Browse files
committed
Merge pull request #5333 from tacaswell/patch-2
Patch 2
1 parent 9bd7365 commit 60ec100

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/axes/_base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3222,7 +3222,8 @@ def minorticks_on(self):
32223222
ax.set_minor_locator(mticker.LogLocator(s.base, s.subs))
32233223
elif scale == 'symlog':
32243224
s = ax._scale
3225-
ax.set_minor_locator(mticker.SymLogLocator(s.base, s.subs))
3225+
ax.set_minor_locator(
3226+
mticker.SymmetricalLogLocator(s.base, s.subs))
32263227
else:
32273228
ax.set_minor_locator(mticker.AutoMinorLocator())
32283229

0 commit comments

Comments
 (0)