pyvista.plotting.charts.PiePlot.label#
- property PiePlot.label[source]#
Return or set the this plot’s label, as shown in the chart’s legend.
Examples
Create a pie plot with custom label.
>>> import pyvista as pv >>> import numpy as np >>> chart = pv.ChartPie([4, 3, 2, 1]) >>> plot = chart.plot >>> chart.show()
Modify the label.
>>> plot.label = "My awesome plot" >>> chart.show()