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()
Disable the usage of the below range color.
>>> import pyvista as pv >>> lut = pv.LookupTable() >>> lut.below_range_color = None >>> lut.plot()