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()
https://d33wubrfki0l68.cloudfront.net/4d59ed20d1b3eeb4a1fe843d77c285b4fb1f4d77/6bd80/_images/pyvista-plotting-charts-pieplot-label-2_00_00.png

Modify the label.

>>> plot.label = "My awesome plot"
>>> chart.show()
https://d33wubrfki0l68.cloudfront.net/66dc32cc2938dd02be9095770816b8a69d30355d/8fe8d/_images/pyvista-plotting-charts-pieplot-label-2_01_00.png