Data Display
Data Display
Name
Role
Status
Joined
Alice MüllerEngineer Active2024-01-15
Bob SchneiderDesigner On leave2023-07-22
Carol WeberManager Inactive2022-11-03
Usage
<FluentDataGrid Items="@People.AsQueryable()" TGridItem="Person">
    <PropertyColumn Property="@(p => p.Name)" Sortable="true" />
    <PropertyColumn Property="@(p => p.Role)" Sortable="true" />
    <TemplateColumn Title="Status">
        <FluentBadge Appearance="BadgeAppearance.Filled">@context.Status</FluentBadge>
    </TemplateColumn>
</FluentDataGrid>