pyvista.Chart2D.y_label#

property Chart2D.y_label[source]#

Return or set the label of this chart’s y 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()
https://d33wubrfki0l68.cloudfront.net/5cc2b1f79098bba24415baeac830cb46bc2affd2/2cd88/_images/pyvista-chart2d-y_label-2_00_00.png