pyvista.plotting.charts.AreaPlot.line_width#

property AreaPlot.line_width[ソース]#

このプロットに描かれたすべての線のライン幅を返すか設定します.

これは,このプロットのペンの幅にアクセスして変更することと同じです.

線幅を10に設定します

>>> import pyvista as pv
>>> chart = pv.Chart2D()
>>> plot = chart.area([0, 1, 2], [0, 0, 1], [1, 3, 2])
>>> plot.line_style = '-'  # Make sure all lines are visible
>>> plot.line_width = 10
>>> chart.show()
../../../../_images/pyvista-plotting-charts-AreaPlot-line_width-1_00_00.png