pyvista.Chart2D.toggle#

Chart2D.toggle()[source]#

Toggle the chart’s visibility.

Examples

Create a 2D chart.

>>> import pyvista as pv
>>> chart = pv.Chart2D()
>>> plot = chart.line([0, 1, 2], [2, 1, 3])
>>> chart.show()
../../../../_images/pyvista-Chart2D-toggle-2_00_00.png

Hide it.

>>> chart.toggle()
>>> chart.show()
../../../../_images/pyvista-Chart2D-toggle-2_01_00.png