PluginPanel
Generic wrapper for arbitrary Grafana plugins.
Use this when you need to use a plugin that doesn’t have a dedicated component in this library.
<PluginPanel title="Custom Plugin" type="my-custom-plugin" width={6} height={4} options={{ customOption: true }}/>| Prop | Type | Default | Description |
|---|---|---|---|
type * | string | required | Plugin type identifier (e.g., ‘volkovlabs-variable-panel’) |
options | Record<string, unknown> | - | Plugin-specific options |
pluginVersion | string | - | Plugin version |
Props marked with * are required.
Inherits from BasePanelProps