| [ Web Proxy ] |
| Viewing: https://matplotlib.org/stable/api/_as_gen/../_as_gen/matplotlib.widgets.CheckButtons.html | [Back] [Original] |
Section Navigation
matplotlibmatplotlib.animationmatplotlib.artistmatplotlib.axesmatplotlib.axismatplotlib.backend_basesmatplotlib.backend_managersmatplotlib.backend_toolsmatplotlib.backendsmatplotlib.backends.backend_mixedmatplotlib.backends.backend_templatematplotlib.backends.backend_aggmatplotlib.backends.backend_cairomatplotlib.backends.backend_gtk3agg, matplotlib.backends.backend_gtk3cairomatplotlib.backends.backend_gtk4agg, matplotlib.backends.backend_gtk4cairomatplotlib.backends.backend_nbaggmatplotlib.backends.backend_pdfmatplotlib.backends.backend_pgfmatplotlib.backends.backend_psmatplotlib.backends.registrymatplotlib.backends.backend_qtagg, matplotlib.backends.backend_qtcairomatplotlib.backends.backend_svgmatplotlib.backends.backend_tkagg, matplotlib.backends.backend_tkcairomatplotlib.backends.backend_webagg_corematplotlib.backends.backend_webaggmatplotlib.backends.backend_wxagg, matplotlib.backends.backend_wxcairomatplotlib.beziermatplotlib.categorymatplotlib.cbookmatplotlib.cmmatplotlib.collectionsmatplotlib.colorbarmatplotlib.colorizermatplotlib.colorsmatplotlib.containermatplotlib.contourmatplotlib.datesmatplotlib.dvireadmatplotlib.figurematplotlib.font_managermatplotlib.ft2fontmatplotlib.gridspec
matplotlib.hatchmatplotlib.imagematplotlib.insetmatplotlib.layout_enginematplotlib.legendmatplotlib.legend_handlermatplotlib.lines
matplotlib.markers
matplotlib.mathtextmatplotlib.mlabmatplotlib.offsetboxmatplotlib.patchesmatplotlib.pathmatplotlib.patheffectsmatplotlib.pyplotmatplotlib.projections
matplotlib.quiver
matplotlib.rcsetupmatplotlib.sankeymatplotlib.scalematplotlib.sphinxext.mathmplmatplotlib.sphinxext.plot_directivematplotlib.sphinxext.figmpl_directivematplotlib.sphinxext.rolesmatplotlib.spinesmatplotlib.stylematplotlib.tablematplotlib.testingmatplotlib.textmatplotlib.texmanagermatplotlib.tickermatplotlib.transformsmatplotlib.trimatplotlib.typingmatplotlib.unitsmatplotlib.widgetsmatplotlib._afmmatplotlib._apimatplotlib._docstringmatplotlib._enumsmatplotlib._type1fontmatplotlib._tight_bboxmatplotlib._tight_layoutmpl_toolkits.mplot3dmpl_toolkits.axes_grid1mpl_toolkits.axisartistpylabmatplotlib.widgetsBases: _Buttons
A GUI neutral set of check buttons.
For the check buttons to remain responsive you must keep a reference to this object.
Connect to the CheckButtons with the on_clicked method.
Add check buttons to Axes instance ax.
AxesThe parent Axes for the widget.
The labels of the check buttons.
The initial check states of the buttons. The list must have the same length as labels. If not given, all buttons are unchecked.
The layout of the check buttons. Options are:
None: Use legacy vertical layout (default).
"vertical": Arrange buttons in a single column with
dynamic positioning based on text widths.
"horizontal": Arrange buttons in a single row with
dynamic positioning based on text widths.
(rows, cols) tuple: Arrange buttons in a grid with the
specified number of rows and columns. Buttons are placed
left-to-right, top-to-bottom with dynamic positioning.
The layout options "vertical", "horizontal" and (rows, cols)
create mtext.Text objects to determine exact text sizes, and
then they are added to the Axes. This is usually okay, but may cause
side-effects and has a slight performance impact. Therefore the
default None value avoids this.
Added in version 3.11.
Use blitting for faster drawing if supported by the backend. See the tutorial Faster rendering by using blitting for details.
Added in version 3.7.
Dictionary of Text properties to be used for the labels. Each
dictionary value should be a list of at least a single element. If
the list is of length M, its values are cycled such that the Nth
label gets the (N mod M) property.
Added in version 3.7.
Dictionary of scatter Collection properties to be used for the
check button frame. Defaults (label font size / 2)**2 size, black
edgecolor, no facecolor, and 1.0 linewidth.
Added in version 3.7.
Dictionary of scatter Collection properties to be used for the
check button check. Defaults to (label font size / 2)**2 size,
black color, and 1.0 linewidth.
Added in version 3.7.
Modify the state of a check button by index.
Callbacks will be triggered if eventson is True.
Index of the check button to toggle.
If a boolean value, set the state explicitly. If no value is provided, the state is toggled.
If index is invalid.
If state is not boolean.
Set properties of the check button checks.
Added in version 3.7.
Dictionary of Collection properties to be used for the check
button check.
Set properties of the check button frames.
Added in version 3.7.
Dictionary of Collection properties to be used for the check
button frames.
matplotlib.widgets.CheckButtons#
Copyright 20022012 John Hunter, Darren Dale, Eric Firing, Michael Droettboom and the Matplotlib development team; 20122026 The Matplotlib development team.
Created using Sphinx 9.1.0.
Built from v3.11.2-1-g879ad8ebba.
Built with the PyData Sphinx Theme 0.16.1.
| Web Proxy Viewer | New URL | Original Page |