***

title: "DataTableComponentConfig"
generated: true
---------------

<GenerationInfo sourceFile="packages/admin-ui/src/lib/core/src/shared/components/data-table-2/data-table-custom-component.service.ts" sourceLine="54" packageName="@vendure/admin-ui" />

Configures a [CustomDetailComponent](/current/core/reference/admin-ui-api/custom-detail-components/custom-detail-component#customdetailcomponent) to be placed in the given location.

```ts title="Signature"
interface DataTableComponentConfig {
    tableId: DataTableLocationId;
    columnId: DataTableColumnId;
    component: Type<CustomColumnComponent>;
    providers?: Provider[];
}
```

<div className="members-wrapper">

### tableId

\<MemberInfo kind="property" type={`DataTableLocationId`}   />

The location in the UI where the custom component should be placed.

### columnId

\<MemberInfo kind="property" type={`DataTableColumnId`}   />

The column in the table where the custom component should be placed.

### component

\<MemberInfo kind="property" type={`Type<<a href='/current/core/reference/admin-ui-api/custom-table-components/custom-column-component#customcolumncomponent'>CustomColumnComponent</a>>`}   />

The component to render in the table cell. This component should implement the
[CustomColumnComponent](/current/core/reference/admin-ui-api/custom-table-components/custom-column-component#customcolumncomponent) interface.

### providers

\<MemberInfo kind="property" type={`Provider[]`}   />

</div>
