pyvista.plotting.charts.AreaPlot.y2#

property AreaPlot.y2[ソース]#

描画領域の第2の輪郭上の点のY座標を返します.

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

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