active_scalars_name#
- property ExplicitStructuredGrid.active_scalars_name: str#
Return the name of the active scalars.
Examples
Create a mesh, add scalars to the mesh, and return the name of the active scalars.
>>> import pyvista >>> mesh = pyvista.Sphere() >>> mesh['Z Height'] = mesh.points[:, 2] >>> mesh.active_scalars_name 'Z Height'