LookupTable.below_range_color#
- property LookupTable.below_range_color: Color | None[source]#
Return or set the below range color.
Any values below
LookupTable.scalar_rangewill be rendered with this color.
Examples#
Download Python source code | Download Jupyter notebook
Enable the usage of the below range color.
>>> import pyvista as pv
>>> lut = pv.LookupTable()
>>> lut.below_range_color = 'blue'
>>> lut.plot()
Disable the usage of the below range color.
>>> import pyvista as pv
>>> lut = pv.LookupTable()
>>> lut.below_range_color = None
>>> lut.plot()