# Examples from pyvista.ChartBox.background_texture
# =================================================

# Create a boxplot chart with an emoji as its background.
import pyvista as pv
from pyvista import examples
chart = pv.ChartBox([[0, 1, 1, 2, 3, 3, 4]])
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

