Olá!
Enfrentei o mesmo problema, precisava definir a largura fixa para a coluna de células. No meu caso, a solução foi usar CellStyle="width: 160px;".
Encontrei a solução no repositório do projeto: https://github.com/MudBlazor/MudBlazor/discussions/4920
Hi!
I faced the same issue, I needed to set a fixed width for the cell column. In my case, the solution was to use CellStyle="width: 160px;".
I found the solution in the project's repository: https://github.com/MudBlazor/MudBlazor/discussions/4920
<TemplateColumn Title="Celular" CellStyle="width: 160px">
<CellTemplate>
@if (context.Item.CellPhones?.Any() == true)
{
@CelularHelperFormat.FormatCelular(
string.Join(", ", context
.Item
.CellPhones
.Select(c => $"{c.FullNumber}"))
);
}
</CellTemplate>
</TemplateColumn>