[!Note] Please note that this control has been deprecated and replaced with the Grid component, and as such, we recommend migrating to that control. This will not be receiving any new features, bug fixes will be deprioritized. For help or questions on migrating your codebase to the Data Grid, please contact support.
Blazor Horizontal Scrolling
Ignite UI for Blazor 열의 총 너비를 Blazor 데이터 그리드의 너비보다 크게 설정하여 가로 스크롤을 활성화합니다.
Blazor Horizontal Scrolling Example
Setting Default Column Width
<IgbDataGrid Height="100%" Width="100%"
DataSource="DataSource"
DefaultColumnMinWidth="300" />
Setting Individual Column Widths
<IgbDataGrid Height="100%" Width="100%"
DataSource="DataSource"
AutoGenerateColumns="false">
<IgbTextColumn Field="FirstName" Width="300" />
<IgbTextColumn Field="LastName" Width="300" />
<IgbNumericColumn Field="Age" Width="300" />
<IgbDateTimeColumn Field="Birthday" Width="300" />
<IgbTextColumn Field="Street" Width="300" />
<IgbTextColumn Field="City" Width="300" />
<IgbNumericColumn Field="Salary" Width="300" />
<IgbNumericColumn Field="Sales" Width="300" />
</IgbDataGrid>