Set the resolution of the figure in dots-per-inch. Parameters ---------- val : float
(self, val)
| 3206 | return self.dpi |
| 3207 | |
| 3208 | def set_dpi(self, val): |
| 3209 | """ |
| 3210 | Set the resolution of the figure in dots-per-inch. |
| 3211 | |
| 3212 | Parameters |
| 3213 | ---------- |
| 3214 | val : float |
| 3215 | """ |
| 3216 | self.dpi = val |
| 3217 | self.stale = True |
| 3218 | |
| 3219 | def set_figwidth(self, val, forward=True): |
| 3220 | """ |
no outgoing calls