pyvista.plotting.charts.BoxPlot.label#

property BoxPlot.label[source]#

Return or set the this plot’s label, as shown in the chart’s legend.

Examples

Create a box plot with custom label.

>>> import pyvista as pv
>>> import numpy as np
>>> chart = pv.ChartBox([[0, 1, 1, 2, 3, 3, 4]])
>>> plot = chart.plot
>>> chart.show()
../../../../_images/pyvista-plotting-charts-BoxPlot-label-2_00_00.png

Modify the label.

>>> plot.label = "My awesome plot"
>>> chart.show()
../../../../_images/pyvista-plotting-charts-BoxPlot-label-2_01_00.png