# Examples from pyvista.plotting.themes._AxesConfig
# =================================================

# Show the default axes configuration values.
import pyvista as pv
pv.global_theme.axes.x_color

pv.global_theme.axes.y_color

pv.global_theme.axes.z_color

pv.global_theme.axes.box

pv.global_theme.axes.show

# Set the x-axis color to black.
pv.global_theme.axes.x_color = 'black'

# Show the axes orientation widget by default.
pv.global_theme.axes.show = True

# Use the `axes orientation box`
# as the orientation widget.
pv.global_theme.axes.box = True

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

