pyvista.plotting.charts.Pen.style#

property Pen.style[ソース]#

ペンの線スタイルを返すか設定します.

使用可能なラインスタイルのリストは Pen.LINE_STYLES を参照してください.

>>> import pyvista as pv
>>> chart = pv.Chart2D()
>>> plot = chart.line([0, 1, 2], [2, 1, 3])
>>> plot.pen.style = '-.'
>>> chart.show()
../../../../_images/pyvista-plotting-charts-Pen-style-1_00_00.png