pyvista.plotting.charts.BoxPlot.brush#
- property BoxPlot.brush[ソース]#
Brushオブジェクトは,このプロットの形状がどのように塗りつぶされるかを制御します.
- 戻り値:
Brush
Brushオブジェクトは,このプロットの形状がどのように塗りつぶされるかを制御します.
例
箱ひげ図のbrushオブジェクトにカスタムテクスチャを使用します.
>>> import pyvista as pv >>> from pyvista import examples >>> chart = pv.ChartBox([[0, 1, 1, 2, 3, 3, 4]]) >>> plot = chart.plot >>> plot.brush.texture = examples.download_puppy_texture() >>> chart.show()