8000 [MAINT] Add symlog locator to __all__ and to the docs by Tillsten · Pull Request #5170 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

[MAINT] Add symlog locator to __all__ and to the docs #5170

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 8, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[MAINT] Add symlog ticker to all and docs
  • Loading branch information
Tillsten committed Oct 2, 2015
commit 80100624ca5c07cdda379ca74417be2c4800476a
7 changes: 6 additions & 1 deletion lib/matplotlib/ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@
:class:`LogLocator`
logarithmically ticks from min to max

:class:`SymmetricalLogLocator`
locator for use with with the symlog norm, works like the `LogLocator` for
the part outside of the threshold and add 0 if inside the limits

:class:`MultipleLocator`
ticks and range are a multiple of base;
either integer or float
Expand Down Expand Up @@ -2004,4 +2008,5 @@ def get_locator(self, d):
'LogFormatterExponent', 'LogFormatterMathtext', 'Locator',
'IndexLocator', 'FixedLocator', 'NullLocator',
'LinearLocator', 'LogLocator', 'AutoLocator',
'MultipleLocator', 'MaxNLocator', 'AutoMinorLocator',)
'MultipleLocator', 'MaxNLocator', 'AutoMinorLocator',
'SymmetricalLogLocator')
0