# Examples from pyvista.Renderer.remove_legend
# ============================================

import pyvista as pv
mesh = pv.Sphere()
pl = pv.Plotter()
_ = pl.add_mesh(mesh, label='sphere')
_ = pl.add_legend()
pl.remove_legend()

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

