pyvista.plotting.charts.LinePlot2D.x#
- property LinePlot2D.x[source]#
Retrieve the X coordinates of the points through which a line is drawn.
Examples
Create a line plot and display the x coordinates.
>>> import pyvista as pv >>> chart = pv.Chart2D() >>> plot = chart.line([0, 1, 2], [2, 1, 3]) >>> plot.x pyvista_ndarray([0, 1, 2]) >>> chart.show()