pyvista.Chart2D.x_label#

property Chart2D.x_label[source]#

Return or set the label of this chart’s x axis.

Examples

Create a 2D plot and set custom axis labels.

>>> import pyvista as pv
>>> chart = pv.Chart2D()
>>> _ = chart.line([0, 1, 2], [2, 1, 3])
>>> chart.x_label = "Horizontal axis"
>>> chart.y_label = "Vertical axis"
>>> chart.show()
../../../../_images/pyvista-Chart2D-x_label-2_00_00.png