hello, I have these grouped columns:
<SfGrid @ref="_SfGrid" Height="500px" AllowExcelExport="true" DataSource="@_EverythingDailies" AllowGrouping="true" AllowPdfExport="true" GridLines="GridLine.Both"
Toolbar="_Toolbaritems">
<GridGroupSettings ShowDropArea="true" Columns="@GroupedColumn"></GridGroupSettings>
<GridEvents OnToolbarClick="ToolbarClickHandler" TValue="ReportmakingServiceReference.EverythingDaily"></GridEvents>
<GridColumns>
<GridColumn Field=@nameof(ReportmakingServiceReference.EverythingDaily.StartDate) Format="dd.MM.yyyy" HeaderText="Дата начала" AutoFit="true"></GridColumn>
<GridColumn Field=@nameof(ReportmakingServiceReference.EverythingDaily.EndDate) Format="dd.MM.yyyy" HeaderText="Дата завершения" AutoFit="true"></GridColumn>
<GridColumn Field=@nameof(ReportmakingServiceReference.EverythingDaily.StationName) HeaderText="Станция" AutoFit="true"></GridColumn>
</GridColumns>
</SfGrid>
private string[] GroupedColumn = new string[] { "StartDate", "EndDate", "StationName" };
and in excel export it displays like this:

is it possible to display HeaderTexts instead of these red ones?
I mean to replace them with these ones: HeaderText="Дата начала", HeaderText="Дата завершения" , HeaderText="Станция"
I am using blazor version 18.2.0.47