pyvista.plotting.charts.AreaPlot.brush#

property AreaPlot.brush[ソース]#

Brushオブジェクトは,このプロットの形状がどのように塗りつぶされるかを制御します.

戻り値:
Brush

Brushオブジェクトは,このプロットの形状がどのように塗りつぶされるかを制御します.

面グラフのbrushオブジェクトにカスタムテクスチャを使用します.

>>> import pyvista as pv
>>> from pyvista import examples
>>> chart = pv.Chart2D()
>>> plot = chart.area([0, 1, 2], [0, 0, 1], [1, 3, 2])
>>> plot.brush.texture = examples.download_puppy_texture()
>>> chart.show()
../../../../_images/pyvista-plotting-charts-AreaPlot-brush-1_00_00.png