# Examples from pyvista.plotting.charts.PiePlot.color_scheme
# ==========================================================

# Set the pie plot's color scheme to warm.
import pyvista as pv
chart = pv.ChartPie([4, 3, 2, 1])
plot = chart.plot
plot.color_scheme = 'warm'
chart.show()

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

