ComponentRegistration#
- class 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 (for example
'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
Attributes#
Alias for field number 2 |
|
Alias for field number 0 |
|
Alias for field number 3 |
|
Alias for field number 1 |