cc3fc18076
* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
55 lines
1.1 KiB
Markdown
55 lines
1.1 KiB
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "DataLinkClickEvent"
|
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## DataLinkClickEvent interface
|
|
|
|
Callback info for DataLink click events
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export interface DataLinkClickEvent<T = any>
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { DataLinkClickEvent } from '@grafana/data';
|
|
```
|
|
<b>Properties</b>
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [e](#e-property) | <code>any</code> | |
|
|
| [origin](#origin-property) | <code>T</code> | |
|
|
| [scopedVars](#scopedvars-property) | <code>ScopedVars</code> | |
|
|
|
|
### e property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
e?: any;
|
|
```
|
|
|
|
### origin property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
origin: T;
|
|
```
|
|
|
|
### scopedVars property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
scopedVars: ScopedVars;
|
|
```
|