pyvista.plotting.charts.BarPlot.pen#
- property BarPlot.pen[ソース]#
Penオブジェクトは,このプロットの線がどのように描かれるかを制御します.
- 戻り値:
Pen
Penオブジェクトは,このプロットの線がどのように描かれるかを制御します.
例
棒グラフのペンオブジェクトの線幅を大きくします.
>>> import pyvista as pv >>> chart = pv.Chart2D() >>> plot = chart.bar([1, 2, 3], [2, 1, 3]) >>> plot.line_style = '-' # Make sure all lines are visible >>> plot.pen.width = 10 >>> chart.show()