AreaPlot.y1#
- property AreaPlot.y1[source]#
Retrieve the Y coordinates of the points on the first outline of the drawn area.
Examples#
Download Python source code | Download Jupyter notebook
Create an area plot and display the y1 coordinates.
>>> import pyvista as pv
>>> chart = pv.Chart2D()
>>> plot = chart.area([0, 1, 2], [2, 1, 3], [1, 0, 1])
>>> plot.y1
pyvista_ndarray([2, 1, 3])
>>> chart.show()