# Examples from pyvista.set_jupyter_backend
# =========================================

# Enable the trame Trame backend.
pv.set_jupyter_backend('trame')

# Just show static images.
pv.set_jupyter_backend('static')

# Disable all plotting within JupyterLab and display using a
# standard desktop VTK render window.
pv.set_jupyter_backend('none')

# Reset to auto-detect the best available backend.
pv.set_jupyter_backend(None)

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

