pyvista.plotting.charts.BoxPlot.pen#
- property BoxPlot.pen[ソース]#
Penオブジェクトは,このプロットの線がどのように描かれるかを制御します.
- 戻り値:
Pen
Penオブジェクトは,このプロットの線がどのように描かれるかを制御します.
例
箱ひげ図のペンオブジェクトの線幅を大きくします.
>>> 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.pen.width = 10 >>> chart.show()