MCPcopy Index your code
hub / github.com/bqplot/bqplot / title

Function title

bqplot/pyplot.py:431–444  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

429
430
431def 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
447def legend():

Callers

nothing calls this directly

Calls 1

current_figureFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…