Helper class for pyplot mode, wraps everything up into a neat bundle. For non-interactive backends, the base class is sufficient. For interactive backends, see the documentation of the `.FigureManagerBase` class for the list of methods that can/should be overridden.
| 137 | |
| 138 | |
| 139 | class FigureManagerTemplate(FigureManagerBase): |
| 140 | """ |
| 141 | Helper class for pyplot mode, wraps everything up into a neat bundle. |
| 142 | |
| 143 | For non-interactive backends, the base class is sufficient. For |
| 144 | interactive backends, see the documentation of the `.FigureManagerBase` |
| 145 | class for the list of methods that can/should be overridden. |
| 146 | """ |
| 147 | |
| 148 | |
| 149 | class FigureCanvasTemplate(FigureCanvasBase): |
no outgoing calls
searching dependent graphs…