> For the complete documentation index, see [llms.txt](https://noraent.gitbook.io/nora/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://noraent.gitbook.io/nora/documentation/main-features/columns/row-height.md).

# Row height 🚧

### 행 높이 지정 🚧

기본 행 높이는 32px입니다.  행 높이를 일괄 변경 합니다.

> 개발 미정

### 행 별 높이 지정

기본 행 높이는 32px입니다. dataSource에서 height 속성을 설정하면 각 행별로 개별 높이를 지정할 수 있습니다.  내용의 길이나 구성에 따라 행 높이를 유연하게 조정할 수 있습니다.

{% tabs %}
{% tab title="Typescript" %}

```tsx
import { DataGrid } from '@noraent/nora-datagrid';
import { columns, dataSource } from './constants';

const dataSource = [
  {
    height: 32
  }
]

function App() {
  
  return (
    <div style={{ height: 400, width: '100%' }}>
      <DataGrid
        columns={columns}
        dataSource={dataSource}
      />
    </div>
  );
}

export default App;


```

{% endtab %}
{% endtabs %}

#### API

[DataGrid](/nora/api-reference/components/datagrid.md)
