pyvista.plotting.charts.PiePlot.color#
- property PiePlot.color[source]#
Return or set the plot’s color.
This is the color used by the plot’s brush to draw the different components.
Examples
Set the pie plot’s color to red.
>>> import pyvista as pv >>> chart = pv.ChartPie([4, 3, 2, 1]) >>> plot = chart.plot >>> plot.color = 'r' >>> chart.show()