| 296 | # Tick Formatter |
| 297 | |
| 298 | class FormatterPrettyPrint: |
| 299 | def __init__(self, useMathText=True): |
| 300 | self._fmt = mticker.ScalarFormatter( |
| 301 | useMathText=useMathText, useOffset=False) |
| 302 | self._fmt.create_dummy_axis() |
| 303 | |
| 304 | def __call__(self, direction, factor, values): |
| 305 | return self._fmt.format_ticks(values) |
| 306 | |
| 307 | |
| 308 | class DictFormatter: |
no outgoing calls
searching dependent graphs…