pyvista.LookupTable.below_range_color#

property LookupTable.below_range_color: Color | None[source]#

Return or set the below range color.

Any values below LookupTable.scalar_range will be rendered with this color.

Examples

Enable the usage of the below range color.

>>> import pyvista as pv
>>> lut = pv.LookupTable()
>>> lut.below_range_color = 'blue'
>>> lut.plot()
../../../_images/pyvista-LookupTable-below_range_color-1_00_00.png

Disable the usage of the below range color.

>>> import pyvista as pv
>>> lut = pv.LookupTable()
>>> lut.below_range_color = None
>>> lut.plot()
../../../_images/pyvista-LookupTable-below_range_color-1_01_00.png