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

Skip to content

Commit 0b3f63c

Browse files
committed
Fix the minotick-fix
Sorry I messed up it last time.
1 parent 8000e2f commit 0b3f63c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/matplotlib/axes/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3222,7 +3222,7 @@ 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(mticker.SymmetricalLogLocator(s.base, s.subs))
32263226
else:
32273227
ax.set_minor_locator(mticker.AutoMinorLocator())
32283228

0 commit comments

Comments
 (0)