# Examples from pyvista.ChartMPL.background_texture
# =================================================

# Create a matplotlib chart with an emoji as its background.
import pyvista as pv
from pyvista import examples
chart = pv.ChartMPL()

chart.background_texture = examples.download_emoji_texture()
chart.show(interactive=False)

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

