set_active_scalars#
- PolyData.set_active_scalars(name: Optional[str], preference='cell')#
Find the scalars by name and appropriately sets it as active.
To deactivate any active scalars, pass
None
as thename
.- Parameters
- name
str
orNone
Name of the scalars array to assign as active. If
None
, deactivates active scalars for both point and cell data.- preference
str
,optional
If there are two arrays of the same name associated with points or cells, it will prioritize an array matching this type. Can be either
'cell'
or'point'
.
- name