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

Skip to content
Closed
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
Changes multiplication sign from cdot to cross
  • Loading branch information
VincentVandalon committed Mar 6, 2016
commit 681820f13247f1c951edc16dfdb05848244f1697
2 changes: 1 addition & 1 deletion lib/matplotlib/ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ def get_offset(self):
sciNotStr = self.format_data(10 ** self.orderOfMagnitude)
else:
# sciNotStr = '%g' % 10 **self.orderOfMagnitude
sciNotStr = ('\u22C5 ' + self.format_data(
sciNotStr = ('\u2A2F ' + self.format_data(
10 ** self.orderOfMagnitude))

# Do final formatting
Expand Down