(self, vmin, vmax)
| 1154 | return self.tick_values(dmin, dmax) |
| 1155 | |
| 1156 | def tick_values(self, vmin, vmax): |
| 1157 | start, stop = self._create_rrule(vmin, vmax) |
| 1158 | dates = self.rule.between(start, stop, True) |
| 1159 | if len(dates) == 0: |
| 1160 | return date2num([vmin, vmax]) |
| 1161 | return self.raise_if_exceeds(date2num(dates)) |
| 1162 | |
| 1163 | def _create_rrule(self, vmin, vmax): |
| 1164 | # set appropriate rrule dtstart and until and return |