ComponentRegistration#
- namedtuple ComponentRegistration(name: str, target: type, component: type, source: str)[source]#
Describe one registered plotter component.
Returned by
registered_plotter_components().Added in version 0.48.0.
- Attributes:
- name
str The namespace the component is attached under (e.g.
'scalar_bars').- target
type The PyVista plotter class (or base class) the component is registered against.
- component
type The component class itself.
- source
str Human-readable origin in the form
'module.qualname'for explicit registrations, or the entry-pointvaluefor plugin- discovered ones — useful for debugging which plugin registered a given component.
- name