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