pyvista.LookupTable.above_range_color#

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

Return or set the above range color.

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

Examples

Enable the usage of the above range color.

>>> import pyvista as pv
>>> lut = pv.LookupTable()
>>> lut.above_range_color = 'blue'
>>> lut.plot()
https://d33wubrfki0l68.cloudfront.net/f152d0c779e54bd021e8428b4a272be63ef1d4fb/6e230/_images/pyvista-lookuptable-above_range_color-1_00_00.png

Disable the usage of the above range color.

>>> import pyvista as pv
>>> lut = pv.LookupTable()
>>> lut.above_range_color = None
>>> lut.plot()
https://d33wubrfki0l68.cloudfront.net/e468c082b15c27f2cae23fcbb6e933bb456d85d4/df582/_images/pyvista-lookuptable-above_range_color-1_01_00.png