+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "Column"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## Column interface
Signature
```typescript
export interface Column
```
Import
```typescript
import { Column } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [custom](#custom-property) | Record<string, any>
| |
| [filterable](#filterable-property) | boolean
| |
| [text](#text-property) | string
| |
| [unit](#unit-property) | string
| |
### custom property
Signature
```typescript
custom?: Record;
```
### filterable property
Signature
```typescript
filterable?: boolean;
```
### text property
Signature
```typescript
text: string;
```
### unit property
Signature
```typescript
unit?: string;
```