(self, x, pos=None)
| 726 | self._usetex = mpl._val_or_rc(usetex, 'text.usetex') |
| 727 | |
| 728 | def __call__(self, x, pos=None): |
| 729 | formatter = DateFormatter(self.defaultfmt, self._tz, |
| 730 | usetex=self._usetex) |
| 731 | return formatter(x, pos=pos) |
| 732 | |
| 733 | def format_ticks(self, values): |
| 734 | tickdatetime = [num2date(value, tz=self._tz) for value in values] |
nothing calls this directly
no test coverage detected