+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "PanelEditorProps"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## PanelEditorProps interface
Signature
```typescript
export interface PanelEditorProps
```
Import
```typescript
import { PanelEditorProps } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [data](#data-property) | PanelData
| Result set of panel queries |
| [onOptionsChange](#onoptionschange-property) | (options: T, callback?: () => void) => void
| Panel options change handler |
| [options](#options-property) | T
| Panel options |
### data property
Result set of panel queries
Signature
```typescript
data: PanelData;
```
### onOptionsChange property
Panel options change handler
Signature
```typescript
onOptionsChange: (options: T, callback?: () => void) => void;
```
### options property
Panel options
Signature
```typescript
options: T;
```