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 b5fb5c6 commit 4526865Copy full SHA for 4526865
doc/users/whats_new.rst
@@ -17,6 +17,18 @@ This page just covers the highlights -- for the full story, see the
17
new in matplotlib-1.2
18
=====================
19
20
+Locator interface
21
+-----------------
22
+
23
+Philip Elson exposed the intelligence behind the tick Locator classes with a
24
+simple interface. For instance, to get no more than 5 sensible steps which
25
+span the values 10 and 19.5::
26
27
+ >>> import matplotlib.ticker as mticker
28
+ >>> locator = mticker.MaxNLocator(nbins=5)
29
+ >>> print(locator.tick_values(10, 19.5))
30
+ [ 10. 12. 14. 16. 18. 20.]
31
32
Tri-Surface Plots
33
-----------------
34
0 commit comments