Files
grafana/docs/sources/packages_api/data/explorequeryfieldprops.md
Marcus Andersson cc3fc18076 Docs: enable packages reference docs for 7-beta (#23953)
* added packages reference menu item.

* removed the draft flag.

* Updated docs by running script.
2020-04-28 09:53:58 +02:00

71 lines
1.6 KiB
Markdown

+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "ExploreQueryFieldProps"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## ExploreQueryFieldProps interface
<b>Signature</b>
```typescript
export interface ExploreQueryFieldProps<DSType extends DataSourceApi<TQuery, TOptions>, TQuery extends DataQuery = DataQuery, TOptions extends DataSourceJsonData = DataSourceJsonData> extends QueryEditorProps<DSType, TQuery, TOptions>
```
<b>Import</b>
```typescript
import { ExploreQueryFieldProps } from '@grafana/data';
```
<b>Properties</b>
| Property | Type | Description |
| --- | --- | --- |
| [absoluteRange](#absoluterange-property) | <code>AbsoluteTimeRange</code> | |
| [exploreId](#exploreid-property) | <code>any</code> | |
| [exploreMode](#exploremode-property) | <code>ExploreMode</code> | |
| [history](#history-property) | <code>any[]</code> | |
| [onBlur](#onblur-property) | <code>() =&gt; void</code> | |
### absoluteRange property
<b>Signature</b>
```typescript
absoluteRange?: AbsoluteTimeRange;
```
### exploreId property
<b>Signature</b>
```typescript
exploreId?: any;
```
### exploreMode property
<b>Signature</b>
```typescript
exploreMode?: ExploreMode;
```
### history property
<b>Signature</b>
```typescript
history: any[];
```
### onBlur property
<b>Signature</b>
```typescript
onBlur?: () => void;
```