# Examples from pyvista.LookupTable.nan_color
# ===========================================

# Set the NAN color to `'grey'`.
import pyvista as pv
lut = pv.LookupTable()
lut.nan_color = 'grey'
lut.plot()

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

