pyvista.ChartBox.legend# property ChartBox.legend[source]# Return the chart’s legend. Examples Create a boxplot chart with custom labels and access its legend. >>> import pyvista as pv >>> chart = pv.ChartBox([[0, 1, 1, 2, 3, 3, 4]]) >>> chart.plot.label = "Data label" >>> legend = chart.legend >>> chart.show()