+++ # ----------------------------------------------------------------------- # Do not edit this file. It is automatically generated by API Documenter. # ----------------------------------------------------------------------- title = "PanelPluginMeta" keywords = ["grafana","documentation","sdk","@grafana/data"] type = "docs" +++ ## PanelPluginMeta interface Signature ```typescript export interface PanelPluginMeta extends PluginMeta ``` Import ```typescript import { PanelPluginMeta } from '@grafana/data'; ``` Properties | Property | Type | Description | | --- | --- | --- | | [hideFromList](#hidefromlist-property) | boolean | Indicates that panel should not be available in visualisation picker | | [skipDataQuery](#skipdataquery-property) | boolean | Indicates that panel does not issue queries | | [sort](#sort-property) | number | Sort order | ### hideFromList property Indicates that panel should not be available in visualisation picker Signature ```typescript hideFromList?: boolean; ``` ### skipDataQuery property Indicates that panel does not issue queries Signature ```typescript skipDataQuery?: boolean; ``` ### sort property Sort order Signature ```typescript sort: number; ```