Render the `.Figure`. This method must walk the artist tree, even if no output is produced, because it triggers deferred work that users may want to access before saving output to disk. For example computing limits, auto-limits, and tick values.
(self, *args, **kwargs)
| 1962 | """ |
| 1963 | |
| 1964 | def draw(self, *args, **kwargs): |
| 1965 | """ |
| 1966 | Render the `.Figure`. |
| 1967 | |
| 1968 | This method must walk the artist tree, even if no output is produced, |
| 1969 | because it triggers deferred work that users may want to access |
| 1970 | before saving output to disk. For example computing limits, |
| 1971 | auto-limits, and tick values. |
| 1972 | """ |
| 1973 | |
| 1974 | def draw_idle(self, *args, **kwargs): |
| 1975 | """ |
no outgoing calls
no test coverage detected