# Examples from pyvista.Chart2D.border_style
# ==========================================

# Create a 2D chart with a thick, dashed red border.
import pyvista as pv
chart = pv.Chart2D()
chart.border_color = 'r'
chart.border_width = 5
chart.border_style = '--'
chart.show(interactive=False)

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

