PanelPluginMeta interface

Signature

  1. export interface PanelPluginMeta extends PluginMeta

Import

  1. import { PanelPluginMeta } from '@grafana/data';

Properties

PropertyTypeDescription
hideFromListbooleanIndicates that panel should not be available in visualisation picker
skipDataQuerybooleanIndicates that panel does not issue queries
sortnumberSort order

hideFromList property

Indicates that panel should not be available in visualisation picker

Signature

  1. hideFromList?: boolean;

skipDataQuery property

Indicates that panel does not issue queries

Signature

  1. skipDataQuery?: boolean;

sort property

Sort order

Signature

  1. sort: number;