pyvista.plotting.charts.BoxPlot.color#

property BoxPlot.color[source]#

Return or set the plot’s color.

This is the color used by the plot’s brush to draw the different components.

Examples

Set the box plot’s color to red.

>>> import pyvista as pv
>>> chart = pv.ChartBox([[0, 1, 1, 2, 3, 3, 4]])
>>> plot = chart.plot
>>> plot.color = 'r'
>>> chart.show()
../../../../_images/pyvista-plotting-charts-BoxPlot-color-2_00_00.png