pyvista.plotting.charts.AreaPlot.x#

property AreaPlot.x[ソース]#

描画領域を囲む点のX座標を返します.

面グラフを作成し,x座標を表示します.

>>> import pyvista as pv
>>> chart = pv.Chart2D()
>>> plot = chart.area([0, 1, 2], [2, 1, 3], [1, 0, 1])
>>> plot.x
pyvista_ndarray([0, 1, 2])
>>> chart.show()
../../../../_images/pyvista-plotting-charts-AreaPlot-x-1_00_00.png