pyvista.plotting.charts.ScatterPlot2D.brush#

property ScatterPlot2D.brush[ソース]#

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

戻り値:
Brush

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

2D散布図のbrushオブジェクトにカスタムテクスチャを使用します.

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