-
Notifications
You must be signed in to change notification settings - Fork 301
Closed
Description
📰 Custom Issue
Matplotlib has deprecated the IndexFormatter class matplotlib/matplotlib#16170 is used in only one place in the Iris code:
Lines 251 to 256 in a2f49c3
| for axis, ticks in string_axes.items(): | |
| formatter = mpl_ticker.IndexFormatter(ticks) | |
| locator = mpl_ticker.MaxNLocator(integer=True) | |
| this_axis = getattr(ax, axis) | |
| this_axis.set_major_formatter(formatter) | |
| this_axis.set_major_locator(locator) |
A suggestion is given here for how to replace IndexFormatter with a given example matplotlib/matplotlib#16631 (comment).
Reactions are currently unavailable