+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "PanelModel"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## PanelModel interface
Signature
```typescript
export interface PanelModel
```
Import
```typescript
import { PanelModel } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [fieldConfig](#fieldconfig-property) | FieldConfigSource
| Field options configuration |
| [id](#id-property) | number
| ID of the panel within the current dashboard |
| [options](#options-property) | TOptions
| Panel options |
| [pluginVersion](#pluginversion-property) | string
| Version of the panel plugin |
| [scopedVars](#scopedvars-property) | ScopedVars
| |
### fieldConfig property
Field options configuration
Signature
```typescript
fieldConfig: FieldConfigSource;
```
### id property
ID of the panel within the current dashboard
Signature
```typescript
id: number;
```
### options property
Panel options
Signature
```typescript
options: TOptions;
```
### pluginVersion property
Version of the panel plugin
Signature
```typescript
pluginVersion?: string;
```
### scopedVars property
Signature
```typescript
scopedVars?: ScopedVars;
```