Sets the title for the current figure. Parameters ---------- label : str The new title for the current figure. style: dict The CSS style to be applied to the figure title
(label, style=None)
| 429 | |
| 430 | |
| 431 | def title(label, style=None): |
| 432 | """Sets the title for the current figure. |
| 433 | |
| 434 | Parameters |
| 435 | ---------- |
| 436 | label : str |
| 437 | The new title for the current figure. |
| 438 | style: dict |
| 439 | The CSS style to be applied to the figure title |
| 440 | """ |
| 441 | fig = current_figure() |
| 442 | fig.title = label |
| 443 | if style is not None: |
| 444 | fig.title_style = style |
| 445 | |
| 446 | |
| 447 | def legend(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…