A issue of RadzenDataGrid Title

Hello,
I found a issue of RadzenDataGrid Title.
I want to show the title like this "A[µH]", but it show like this "A[MH]"

my code xxx.razor:

@page "/"
@using Radzen
@using Radzen.Blazor

<h1>RadzenDataGrid Test</h1>

        <RadzenDataGrid 
             TItem="AAA"
        >
            <Columns>              
                <RadzenDataGridColumn TItem="AAA" Property="Measurement_Y" Title="A[µH]" />                             
            </Columns>
        </RadzenDataGrid>


@code{
    public class   AAA
    {
        public string aaa { get; set; }

    }
}

You can check this thread: Radzen Datagrid capital letters in column header - #5 by korchev (or use the Standard theme which does not use caps for the headers)