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()
https://d33wubrfki0l68.cloudfront.net/5d9594e29775d93a32bc626d7560ec30fc9a7e54/a2415/_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()
https://d33wubrfki0l68.cloudfront.net/e468c082b15c27f2cae23fcbb6e933bb456d85d4/25b85/_images/pyvista-lookuptable-below_range_color-1_01_00.png