pyvista.Chart2D.visible#

property Chart2D.visible[source]#

Return or set 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()
https://d33wubrfki0l68.cloudfront.net/f46aa1528fc88fbfbde123eb6aa648cfb8c52a8b/4dcc6/_images/pyvista-chart2d-visible-2_00_00.png

Hide it.

>>> chart.visible = False
>>> chart.show()
https://d33wubrfki0l68.cloudfront.net/8d857d80b4aa52de3ad5db22f6e1210632178bb4/17051/_images/pyvista-chart2d-visible-2_01_00.png