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.
1 parent c4b9f4e commit e99f1d5Copy full SHA for e99f1d5
1 file changed
lib/matplotlib/ticker.py
@@ -55,6 +55,10 @@
55
:class:`LogLocator`
56
logarithmically ticks from min to max
57
58
+:class:`SymmetricalLogLocator`
59
+ locator for use with with the symlog norm, works like the `LogLocator` for
60
+ the part outside of the threshold and add 0 if inside the limits
61
+
62
:class:`MultipleLocator`
63
ticks and range are a multiple of base;
64
either integer or float
@@ -2004,4 +2008,5 @@ def get_locator(self, d):
2004
2008
'LogFormatterExponent', 'LogFormatterMathtext', 'Locator',
2005
2009
'IndexLocator', 'FixedLocator', 'NullLocator',
2006
2010
'LinearLocator', 'LogLocator', 'AutoLocator',
2007
- 'MultipleLocator', 'MaxNLocator', 'AutoMinorLocator',)
2011
+ 'MultipleLocator', 'MaxNLocator', 'AutoMinorLocator',
2012
+ 'SymmetricalLogLocator')
0 commit comments