mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
44 lines
905 B
Markdown
44 lines
905 B
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "Dimension"
|
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## Dimension interface
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export interface Dimension<T = any>
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { Dimension } from '@grafana/data';
|
|
```
|
|
<b>Properties</b>
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [columns](#columns-property) | <code>Array<Field<T>></code> | |
|
|
| [name](#name-property) | <code>string</code> | |
|
|
|
|
### columns property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
columns: Array<Field<T>>;
|
|
```
|
|
|
|
### name property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
name: string;
|
|
```
|