Set the domain bounds of the current 'x' scale.
(min, max)
| 279 | |
| 280 | |
| 281 | def xlim(min, max): |
| 282 | """Set the domain bounds of the current 'x' scale. |
| 283 | """ |
| 284 | return set_lim(min, max, 'x') |
| 285 | |
| 286 | |
| 287 | def ylim(min, max): |
nothing calls this directly
no test coverage detected
searching dependent graphs…