# Examples from pyvista.ChartPie.title
# ====================================

# Create a pie chart with title 'My Chart'.
import pyvista as pv
chart = pv.ChartPie([5, 4, 3, 2, 1])
chart.title = 'My Chart'
chart.show()

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

