pyvista.plotting.charts.PiePlot.visible# property PiePlot.visible[source]# Return or set the this plot’s visibility. Examples 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()