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.
2 parents 5a0d489 + d50776c commit c166fa1Copy full SHA for c166fa1
lib/matplotlib/dates.py
@@ -71,6 +71,10 @@
71
72
Here are all the date tickers:
73
74
+ * :class:`MicrosecondLocator`: locate microseconds
75
+
76
+ * :class:`SecondLocator`: locate seconds
77
78
* :class:`MinuteLocator`: locate minutes
79
80
* :class:`HourLocator`: locate hours
@@ -794,6 +798,9 @@ def __setstate__(self, state):
794
798
class DateLocator(ticker.Locator):
795
799
"""
796
800
Determines the tick locations when plotting dates.
801
802
+ This class is subclassed by other Locators and
803
+ is not meant to be used on its own.
797
804
805
hms0d = {'byhour': 0, 'byminute': 0, 'bysecond': 0}
806
0 commit comments