Sets the value of label for an axis whose associated scale has the dimension `y`. Parameters ---------- label: Unicode or None (default: None) The label for y axis
(label=None, mark=None, **kwargs)
| 398 | |
| 399 | |
| 400 | def ylabel(label=None, mark=None, **kwargs): |
| 401 | """Sets the value of label for an axis whose associated scale has the |
| 402 | dimension `y`. |
| 403 | |
| 404 | Parameters |
| 405 | ---------- |
| 406 | label: Unicode or None (default: None) |
| 407 | The label for y axis |
| 408 | """ |
| 409 | _set_label(label, mark, 'y', **kwargs) |
| 410 | |
| 411 | |
| 412 | def grids(fig=None, value='solid'): |
nothing calls this directly
no test coverage detected
searching dependent graphs…