PiePlot.visible#
Examples#
Download Python source code | Download Jupyter notebook
Create a pie plot.
>>> import pyvista as pv
>>> chart = pv.ChartPie([4, 3, 2, 1])
>>> plot = chart.plot
>>> chart.show()
Hide it.
>>> plot.visible = False
>>> chart.show()