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