PanelModel interface

Signature

  1. export interface PanelModel<TOptions = any>

Import

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

Properties

PropertyTypeDescription
fieldConfigFieldConfigSourceField options configuration
idnumberID of the panel within the current dashboard
optionsTOptionsPanel options
pluginVersionstringVersion of the panel plugin
scopedVarsScopedVars

fieldConfig property

Field options configuration

Signature

  1. fieldConfig: FieldConfigSource;

id property

ID of the panel within the current dashboard

Signature

  1. id: number;

options property

Panel options

Signature

  1. options: TOptions;

pluginVersion property

Version of the panel plugin

Signature

  1. pluginVersion?: string;

scopedVars property

Signature

  1. scopedVars?: ScopedVars;