pyvista.ChartPie.toggle# ChartPie.toggle()[source]# Toggle 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.toggle() >>> chart.show()