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

# Set the pie plot's colors manually.
import pyvista as pv
chart = pv.ChartPie([4, 3, 2, 1])
plot = chart.plot
plot.colors = ['b', 'g', 'r', 'c']
chart.show()

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

