Skip to content

ENH ticks sublabel display is now an option #7438

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 15 commits into from
Dec 1, 2016
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
FIX misalignment
  • Loading branch information
NelleV committed Nov 24, 2016
commit 46e237a85b016ef4e0f1c6b18d358e580837b51e
2 changes: 1 addition & 1 deletion lib/matplotlib/ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,7 @@ def __call__(self, x, pos=None):
if usetex:
return (r'$%s%s^{%d}$') % (sign_string,
base,
nearest_long(fx))
nearest_long(fx))
else:
return ('$%s$' % _mathdefault(
'%s%s^{%d}' %
Expand Down