pyvista.plotting.charts.LinePlot2D.y#

property LinePlot2D.y[source]#

Retrieve the Y coordinates of the points through which a line is drawn.

Examples

Create a line plot and display the y coordinates.

>>> import pyvista
>>> chart = pyvista.Chart2D()
>>> plot = chart.line([0, 1, 2], [2, 1, 3])
>>> plot.y
pyvista_ndarray([2, 1, 3])
>>> chart.show()
https://d33wubrfki0l68.cloudfront.net/f46aa1528fc88fbfbde123eb6aa648cfb8c52a8b/c24cf/_images/pyvista-plotting-charts-lineplot2d-y-1_00_00.png