a2d741f60f
* regenerated packages docs. * fixed spelling issues. * fixed spelling issues.
72 lines
1.4 KiB
Markdown
72 lines
1.4 KiB
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "PanelModel"
|
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
|
type = "docs"
|
|
draft = true
|
|
+++
|
|
|
|
## PanelModel interface
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export interface PanelModel<TOptions = any>
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { PanelModel } from '@grafana/data';
|
|
```
|
|
<b>Properties</b>
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [fieldConfig](#fieldconfig-property) | <code>FieldConfigSource</code> | |
|
|
| [id](#id-property) | <code>number</code> | |
|
|
| [options](#options-property) | <code>TOptions</code> | |
|
|
| [pluginVersion](#pluginversion-property) | <code>string</code> | |
|
|
| [scopedVars](#scopedvars-property) | <code>ScopedVars</code> | |
|
|
|
|
### fieldConfig property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
fieldConfig: FieldConfigSource;
|
|
```
|
|
|
|
### id property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
id: number;
|
|
```
|
|
|
|
### options property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
options: TOptions;
|
|
```
|
|
|
|
### pluginVersion property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
pluginVersion?: string;
|
|
```
|
|
|
|
### scopedVars property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
scopedVars?: ScopedVars;
|
|
```
|