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#
Download Python source code | Download Jupyter notebook
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()