Skip to content

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 }}
/>
PropTypeDefaultDescription
type *stringrequiredPlugin type identifier (e.g., ‘volkovlabs-variable-panel’)
optionsRecord<string, unknown>-Plugin-specific options
pluginVersionstring-Plugin version

Props marked with * are required.

Inherits from BasePanelProps