# Examples from pyvista.AxesAssemblySymmetric.labels
# ==================================================

import pyvista as pv
axes_assembly = pv.AxesAssemblySymmetric()

# Use three strings to set the labels. Plus `'+'` and minus `'-'`
# characters are added automatically.
axes_assembly.labels = ['U', 'V', 'W']
axes_assembly.labels

# Alternatively, use six strings to set the labels explicitly.
axes_assembly.labels = [
    'east',
    'west',
    'north',
    'south',
    'up',
    'down',
]
axes_assembly.labels

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

