# Examples from pyvista.AxesAssemblySymmetric.x_label
# ===================================================

# Set the labels with a single string. Plus `'+'` and minus `'-'`
# characters are added automatically.
import pyvista as pv
axes_assembly = pv.AxesAssemblySymmetric()
axes_assembly.x_label = 'Axis'
axes_assembly.x_label

# Set the labels explicitly with two strings.
axes_assembly.x_label = 'anterior', 'posterior'
axes_assembly.x_label

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

