Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0e6ca43 + 0810b9d commit d0ca019Copy full SHA for d0ca019
1 file changed
lib/matplotlib/axes/_base.py
@@ -3222,7 +3222,8 @@ def minorticks_on(self):
3222
ax.set_minor_locator(mticker.LogLocator(s.base, s.subs))
3223
elif scale == 'symlog':
3224
s = ax._scale
3225
- ax.set_minor_locator(mticker.SymLogLocator(s.base, s.subs))
+ ax.set_minor_locator(
3226
+ mticker.SymmetricalLogLocator(s.base, s.subs))
3227
else:
3228
ax.set_minor_locator(mticker.AutoMinorLocator())
3229
0 commit comments