pyvista.plotting.charts.BoxPlot.line_width#

property BoxPlot.line_width[ソース]#

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

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

線幅を10に設定します

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