Set the locations of the ticks. This method is called before computing the tick labels because some formatters need to know all tick locations to do so.
(self, locs)
| 289 | return '' |
| 290 | |
| 291 | def set_locs(self, locs): |
| 292 | """ |
| 293 | Set the locations of the ticks. |
| 294 | |
| 295 | This method is called before computing the tick labels because some |
| 296 | formatters need to know all tick locations to do so. |
| 297 | """ |
| 298 | self._locs = locs |
| 299 | |
| 300 | @staticmethod |
| 301 | def fix_minus(s): |
no outgoing calls