API Reference
Return or set the chart’s visibility.
Examples
Create a pie chart.
>>> import pyvista >>> chart = pyvista.ChartPie([5, 4, 3, 2, 1]) >>> chart.show()
Hide it.
>>> chart.visible = False >>> chart.show()