pyvista.plotting.charts.LinePlot2D.label#

property LinePlot2D.label[source]#

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

Examples

Create a 2D line plot with custom label.

>>> import pyvista as pv
>>> chart = pv.Chart2D()
>>> plot = chart.line([0, 1, 2], [2, 1, 3])
>>> plot.label = "My awesome plot"
>>> chart.show()
../../../../_images/pyvista-plotting-charts-LinePlot2D-label-2_00_00.png