Return the ticks as a list of locations. Parameters ---------- minor : boolean, default: False if True return the minor ticks.
(self, minor=False)
| 914 | self.stale = True |
| 915 | |
| 916 | def get_ticks(self, minor=False): |
| 917 | """ |
| 918 | Return the ticks as a list of locations. |
| 919 | |
| 920 | Parameters |
| 921 | ---------- |
| 922 | minor : boolean, default: False |
| 923 | if True return the minor ticks. |
| 924 | """ |
| 925 | if minor: |
| 926 | return self.long_axis.get_minorticklocs() |
| 927 | else: |
| 928 | return self.long_axis.get_majorticklocs() |
| 929 | |
| 930 | def set_ticklabels(self, ticklabels, *, minor=False, **kwargs): |
| 931 | """ |