visible#
- property PiePlot.visible#
Return or set the this plot’s visibility.
Examples
Create a pie plot.
>>> import pyvista >>> chart = pyvista.ChartPie([4, 3, 2, 1]) >>> plot = chart.plot >>> chart.show()
Hide it.
>>> plot.visible = False >>> chart.show()