Return the values of the located ticks given **vmin** and **vmax**. .. note:: To get tick locations with the vmin and vmax values defined automatically for the associated ``axis`` simply call the Locator instance:: >>> print(type
(self, vmin, vmax)
| 1730 | MAXTICKS = 1000 |
| 1731 | |
| 1732 | def tick_values(self, vmin, vmax): |
| 1733 | """ |
| 1734 | Return the values of the located ticks given **vmin** and **vmax**. |
| 1735 | |
| 1736 | .. note:: |
| 1737 | To get tick locations with the vmin and vmax values defined |
| 1738 | automatically for the associated ``axis`` simply call |
| 1739 | the Locator instance:: |
| 1740 | |
| 1741 | >>> print(type(loc)) |
| 1742 | <type 'Locator'> |
| 1743 | >>> print(loc()) |
| 1744 | [1, 2, 3, 4] |
| 1745 | |
| 1746 | """ |
| 1747 | raise NotImplementedError('Derived must override') |
| 1748 | |
| 1749 | def set_params(self, **kwargs): |
| 1750 | """ |
no outgoing calls